function __construct($title, IContextSource $context, $skn, $from = '', $until = '')
 {
     global $wgCategoryMultisortSortkeySettings;
     parent::__construct($title, $context, $from, $until);
     $this->sortkeyName = $skn;
     $this->sortkeySettings = $wgCategoryMultisortSortkeySettings[$skn];
 }
 function __construct(Category $category)
 {
     parent::__construct($category->getTitle(), RequestContext::getMain());
     $this->limit = self::LIMIT;
     # BAC-265
     $this->items = [];
     $this->count = 0;
 }
Example #3
0
 function __construct($title, $from = '', $until = '')
 {
     parent::__construct($title, $from, $until);
 }
Example #4
0
 function __construct($title, $from = '', $until = '')
 {
     parent::__construct($title, RequestContext::getMain());
     $this->fromSortKey = $from;
     $this->untilSortKey = $until;
 }
 function __construct(Category $category)
 {
     parent::__construct($category->getTitle(), RequestContext::getMain());
     //get all the members in the category
     $this->limit = null;
     $this->items = array();
     $this->count = 0;
 }
Example #6
0
 function __construct($title, $from = '', $until = '', $query = array())
 {
     parent::__construct($title, RequestContext::getMain(), array($from), array($until), $query);
     $this->from = $from;
     $this->until = $until;
 }