コード例 #1
0
 /**
  * Constructor.
  *
  * @since 0.1
  *
  * @param string $name Name of the page
  * @param string $right Right needed to access the page
  * @param string $itemClass Name of the item class
  * @param string $listPage Name of the page listing the items
  */
 public function __construct($name, $right, $itemClass, $listPage)
 {
     $this->itemClass = $itemClass;
     $this->listPage = $listPage;
     parent::__construct($name, $right, false);
     $this->getOutput()->addModules('ep.formpage');
 }
コード例 #2
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Institutions');
 }
コード例 #3
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('EducationProgram');
 }
コード例 #4
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Students');
 }
コード例 #5
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('MyCourses', 'ep-enroll');
 }
コード例 #6
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Courses');
 }
コード例 #7
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Term');
 }
コード例 #8
0
ファイル: SpecialCA.php プロジェクト: schwarer2006/wikia
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('CampusAmbassador', '', false);
 }
コード例 #9
0
ファイル: SpecialStudent.php プロジェクト: schwarer2006/wikia
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Student', '', false);
 }
コード例 #10
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Ambassador');
 }
コード例 #11
0
ファイル: SpecialCAs.php プロジェクト: schwarer2006/wikia
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('CampusAmbassadors');
 }
コード例 #12
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     // We can not demand ep-enroll here already, since the user might first need to login.
     parent::__construct('Enroll', '', false);
 }
コード例 #13
0
ファイル: SpecialOAs.php プロジェクト: schwarer2006/wikia
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('OnlineAmbassadors');
 }
コード例 #14
0
ファイル: SpecialOA.php プロジェクト: schwarer2006/wikia
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('OnlineAmbassador', '', false);
 }