/**
  * 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');
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Institutions');
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('EducationProgram');
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Students');
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('MyCourses', 'ep-enroll');
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Courses');
 }
Ejemplo n.º 7
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Term');
 }
Ejemplo n.º 8
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('CampusAmbassador', '', false);
 }
Ejemplo n.º 9
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Student', '', false);
 }
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('Ambassador');
 }
Ejemplo n.º 11
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('CampusAmbassadors');
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 13
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('OnlineAmbassadors');
 }
Ejemplo n.º 14
0
 /**
  * Constructor.
  *
  * @since 0.1
  */
 public function __construct()
 {
     parent::__construct('OnlineAmbassador', '', false);
 }