コード例 #1
0
 protected function action()
 {
     $this->addParameter('opacity', '0');
     $this->showContentOnly = TRUE;
     $this->pageToView = "message";
     parent::action();
 }
コード例 #2
0
 protected function action()
 {
     $this->showContentOnly = TRUE;
     try {
         $idntwrkr = $this->uriPath[count($this->uriPath) - 1];
     } catch (Exception $exc) {
         $idntwrkr = NULL_PARENT_ROOT;
     }
     Session::setObj(Session::NETWORKER, new Utente($idntwrkr));
     $this->pageToView = "loadntwrkr";
     parent::action();
 }
コード例 #3
0
 protected function action()
 {
     $this->showContentOnly = TRUE;
     try {
         $idntwrkr = $this->uriPath[count($this->uriPath) - 4];
         $fullname = $this->uriPath[count($this->uriPath) - 3] . ' ' . $this->uriPath[count($this->uriPath) - 2];
         $avatar = Utente::decode($this->uriPath[count($this->uriPath) - 1]);
     } catch (Exception $exc) {
         $idntwrkr = NULL_PARENT_ROOT;
         $fullname = NON_DEFINITO;
         $avatar = Utente::getDefaultAvatarUrl();
     }
     $this->addParameter('idntwrkr', $idntwrkr);
     $this->addParameter('fullname', $fullname);
     $this->addParameter('avatar', $avatar);
     $this->pageToView = "addntwrkrsale";
     parent::action();
 }
コード例 #4
0
ファイル: NewUser.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->showContentOnly = TRUE;
     try {
         $parent = $this->uriPath[count($this->uriPath) - 4];
         $sponsor = $this->uriPath[count($this->uriPath) - 3] . ' ' . $this->uriPath[count($this->uriPath) - 2];
         $avatar = Utente::decode($this->uriPath[count($this->uriPath) - 1]);
     } catch (Exception $exc) {
         $parent = NULL_PARENT_ROOT;
         $sponsor = NON_DEFINITO;
         $avatar = Utente::getDefaultAvatarUrl();
     }
     $this->addParameter('parent', $parent);
     $this->addParameter('sponsor', $sponsor);
     $this->addParameter('avatar', $avatar);
     $this->pageToView = "newuser";
     parent::action();
 }
コード例 #5
0
ファイル: Welcome.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->pageToView = "welcome";
     parent::action();
 }
コード例 #6
0
ファイル: LoadUser.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->showContentOnly = TRUE;
     $this->pageToView = "loaduser";
     parent::action();
 }
コード例 #7
0
ファイル: ForgotPwd.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->pageToView = 'forgotpwd';
     parent::action();
 }
コード例 #8
0
 protected function action()
 {
     $this->pageToView = 'viewallteam';
     parent::action();
 }
コード例 #9
0
 protected function action()
 {
     $this->showContentOnly = TRUE;
     $this->pageToView = "addplanunilevel";
     parent::action();
 }
コード例 #10
0
ファイル: Message.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->addParameter('opacity', '1');
     $this->pageToView = "message";
     parent::action();
 }
コード例 #11
0
ファイル: Login.php プロジェクト: raffaelemorgese/levasoo
 protected function action()
 {
     $this->pageToView = "login";
     parent::action();
 }