Exemplo n.º 1
0
 function __construct($out, Profile $profile)
 {
     parent::__construct($out);
     $this->profile = $profile;
     $user = common_current_user();
     $this->lists = $profile->getLists($user);
 }
Exemplo n.º 2
0
 /**
  * @desc Build a LinksMenuElement object
  * @param $title
  * @param $url
  * @param $image
  * @param int $id The Menu's id in the database
  */
 public function __construct($title, $url, $image = '')
 {
     parent::__construct($title);
     $this->set_url($url);
     $this->set_image($image);
     $this->uid = AppContext::get_uid();
 }
Exemplo n.º 3
0
 public function __construct($title, $module_id, $category = 0, $name = Feed::DEFAULT_FEED_NAME, $number = 10, $begin_at = 0)
 {
     parent::__construct($title);
     $this->module_id = $module_id;
     $this->category = $category;
     $this->name = $name;
     $this->number = $number;
     $this->begin_at = $begin_at;
 }
Exemplo n.º 4
0
 /**
  * Construction
  *
  * @param Action $action current action, used for output
  * @param User   $user   Current user or NULL if "guest"
  */
 function __construct(Action $action = null, User $user = null)
 {
     parent::__construct($action);
     $this->user = $user;
 }
Exemplo n.º 5
0
 /**
  * Construction
  *
  * @param Action $action current action, used for output
  */
 function __construct($action = null, $profile = null)
 {
     parent::__construct($action);
     $this->profile = $profile;
 }
Exemplo n.º 6
0
 function __construct($out, $user, $searches)
 {
     parent::__construct($out);
     $this->user = $user;
     $this->searches = $searches;
 }
Exemplo n.º 7
0
 function __construct($id = 0, $tableData = array(), Desk $desk)
 {
     parent::__construct($id, $tableData);
     $this->desk = $desk;
 }
Exemplo n.º 8
0
 /**
  * constructor
  */
 public function __construct($p_aRechten)
 {
     parent::__construct('Bezoeker', $p_aRechten);
 }
Exemplo n.º 9
0
 function __construct($action, $user)
 {
     parent::__construct($action);
     $this->user = $user;
     $this->groups = $user->getGroups();
 }
Exemplo n.º 10
0
 function __construct($val, &$page)
 {
     parent::__construct($val, $page);
     $this->supportingMenu = new SupportingMenu($val, $page);
 }
Exemplo n.º 11
0
 /**
  * @desc Build a ModuleMiniMenu element.
  */
 public function __construct()
 {
     parent::__construct($this->get_formated_title());
 }
Exemplo n.º 12
0
 /**
  * Construction
  *
  * @param Action $action current action, used for output
  */
 function __construct($action = null, $q = null)
 {
     parent::__construct($action);
     $this->q = $q;
 }
Exemplo n.º 13
0
 public function __construct($title)
 {
     parent::__construct($title);
 }
Exemplo n.º 14
0
 function __construct($out, $user, $tags)
 {
     parent::__construct($out);
     $this->user = $user;
     $this->tags = $tags;
 }
 /**
  * constructor
  */
 public function __construct($p_aRechten)
 {
     parent::__construct('Administratie', $p_aRechten);
 }
Exemplo n.º 16
0
 function __construct()
 {
     parent::__construct();
 }