/**
  * Constructor.
  *
  * @param IContextSource $context
  * @param array $conds
  */
 public function __construct(IContextSource $context, array $conds = array())
 {
     $this->mDefaultDirection = true;
     // when MW 1.19 becomes min, we want to pass an IContextSource $context here.
     parent::__construct($context, $conds, 'EPMentor');
 }
Пример #2
0
 /**
  * Constructor.
  *
  * @param IContextSource $context
  * @param array $conds
  */
 public function __construct(IContextSource $context, array $conds = array())
 {
     $this->mDefaultDirection = true;
     parent::__construct($context, $conds, 'EPOA');
 }
Пример #3
0
 /**
  * Constructor.
  *
  * @param IContextSource $context
  * @param array $conds
  */
 public function __construct(IContextSource $context, array $conds = array())
 {
     parent::__construct($context, $conds, 'EPOrg');
     $this->context->getOutput()->addModules('ep.pager.org');
 }
Пример #4
0
 /**
  * Constructor.
  *
  * @param IContextSource $context
  * @param array $conds
  * @param boolean $readOnlyMode
  */
 public function __construct(IContextSource $context, array $conds = array(), $readOnlyMode = false)
 {
     $this->readOnlyMode = $readOnlyMode;
     parent::__construct($context, $conds, 'EPCourse');
     $this->context->getOutput()->addModules('ep.pager.course');
 }
Пример #5
0
 /**
  * Constructor.
  *
  * @param IContextSource $context
  * @param array $conds
  */
 public function __construct(IContextSource $context, array $conds = array())
 {
     parent::__construct($context, $conds, 'EPOrg');
 }