コード例 #1
0
ファイル: C_VK.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     // Менеджеры.
     $this->mVK = M_VK::Instance();
     $this->token = $this->mVK->OAuth(LOGIN, PASSWORD);
 }
コード例 #2
0
ファイル: C_VKSmsRasp.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     //$this->needLogin = true; // раскомментируйте, чтобы закрыть неавторизованный доступ к странице
     $this->mSmsRasp = M_SmsRasp::Instance();
     $this->mRasp = M_Rasp::Instance();
 }
コード例 #3
0
ファイル: C_Comment.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     $this->needLogin = true;
     $this->mRasp = M_Rasp::Instance();
     $this->mUsers = M_Users::Instance();
     $this->mComm = M_Comment::Instance();
 }
コード例 #4
0
ファイル: C_Sender.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     // Менеджеры.
     $this->mSender = M_Sender::Instance();
     $this->mSms = M_Sms::Instance();
     $this->mRasp = M_Rasp::Instance();
     $this->mVK = M_VK::Instance();
 }
コード例 #5
0
ファイル: C_Rasp.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     // Подключаем менеджер работы с расписанием.
     $this->mRasp = M_Rasp::Instance();
     $this->mUsers = M_Users::Instance();
     //Получаем текущую неделю
     $this->now_week = $this->mRasp->get_num_edu_week(date("d-m-Y"));
 }
コード例 #6
0
ファイル: C_Setting.php プロジェクト: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     $this->needLogin = true;
     // раскомментируйте, чтобы закрыть неавторизованный доступ к странице
     // Менеджеры.
     $this->mUsers = M_Users::Instance();
     $this->mSms = M_Sms::Instance();
     $this->mRasp = M_Rasp::Instance();
     $this->mSet = M_Setting::Instance();
 }
コード例 #7
0
ファイル: C_Listuser.php プロジェクト: mavz49/mavz
 function __construct()
 {
     parent::__construct();
     $this->needLogin = true;
     // раскомментируйте, чтобы закрыть неавторизованный доступ к странице
 }
コード例 #8
0
ファイル: C_Admin.php プロジェクト: alpo008/Hello_JS
 public function __construct()
 {
     parent::__construct();
 }
コード例 #9
0
ファイル: C_Login.php プロジェクト: mavz49/mavz
 public function __construct()
 {
     parent::__construct();
     $this->login = '';
 }
コード例 #10
0
 function __construct()
 {
     parent::__construct();
     $this->needLogin = true;
 }
コード例 #11
0
ファイル: C_Index.php プロジェクト: Karginskiy/phpcourse2.ru
 function __construct()
 {
     $this->m_articles = M_Articles::Instance();
     $this->mysql = MSQL::Instance();
     parent::__construct();
 }
コード例 #12
0
ファイル: C_Login.php プロジェクト: ninetw/chsuinfo
 public function __construct()
 {
     parent::__construct();
     $this->mVK = M_VK::Instance();
 }