예제 #1
0
파일: M_VK.php 프로젝트: ninetw/chsuinfo
 public static function Instance()
 {
     if (self::$instance == null) {
         self::$instance = new M_VK();
     }
     return self::$instance;
 }
예제 #2
0
파일: C_VK.php 프로젝트: ninetw/chsuinfo
 function __construct()
 {
     parent::__construct();
     // Менеджеры.
     $this->mVK = M_VK::Instance();
     $this->token = $this->mVK->OAuth(LOGIN, PASSWORD);
 }
예제 #3
0
 function __construct()
 {
     parent::__construct();
     // Менеджеры.
     $this->mSender = M_Sender::Instance();
     $this->mSms = M_Sms::Instance();
     $this->mRasp = M_Rasp::Instance();
     $this->mVK = M_VK::Instance();
 }
예제 #4
0
파일: C_Base.php 프로젝트: ninetw/chsuinfo
 function __construct()
 {
     $this->needLogin = false;
     $this->user = null;
     $this->mUsers = M_Users::Instance();
     $this->mVK = M_VK::Instance();
     $this->mUsers = M_Users::Instance();
     $this->mSmsRasp = M_SmsRasp::Instance();
 }
예제 #5
0
파일: C_Login.php 프로젝트: ninetw/chsuinfo
 public function __construct()
 {
     parent::__construct();
     $this->mVK = M_VK::Instance();
 }