Ejemplo n.º 1
0
 public function isLoggedIn()
 {
     return \Am_Lite::getInstance()->isLoggedIn();
 }
Ejemplo n.º 2
0
        }
        return @unserialize('a:' . $items . ':{' . $serialized . '}');
    }
    /**
     * @return Name of aMember's session variable.
     */
    protected function getSessionName()
    {
        if (defined('AM_SESSION_NAME') && AM_SESSION_NAME) {
            return AM_SESSION_NAME;
        } else {
            return self::SESSION_NAME;
        }
    }
    protected function error($msgOrException)
    {
        $msg = is_string($msgOrException) ? $msgOrException : $msgOrException->getMessage();
        $exception = is_string($msgOrException) ? new Exception($msgOrException) : $msgOrException;
        if ($this->useExceptions) {
            throw $exception;
        } else {
            trigger_error($msg, E_USER_ERROR);
        }
    }
}
/*
 * Init Am_Lite 
 * see constructor for more details;
 */
Am_Lite::getInstance();
Ejemplo n.º 3
0
 function doAjaxValidate()
 {
     if (($err = $this->validate(array('path' => am4Request::get('path')))) === true) {
         $am = Am_Lite::getInstance();
         $e = new aMemberJson();
         $e->valid = 1;
         $e->url = $am->getRootURL();
         echo $e;
     } else {
         $e = new aMemberJsonError($err);
         echo $e;
     }
 }
Ejemplo n.º 4
0
 /**
  *
  * @return Am_Lite
  */
 static function getAPI()
 {
     if (!self::$api) {
         try {
             self::initAPI();
             self::$api = Am_Lite::getInstance();
         } catch (Exception $e) {
             return false;
         }
     }
     return self::$api;
 }
Ejemplo n.º 5
0
 public function trending()
 {
     if ($this->myauth->getUserId() == 1) {
         $data['isPaid'] = true;
     } else {
         $data['isPaid'] = Am_Lite::getInstance()->checkPaid();
     }
     $data['title'] = $this->Vip_model->getConfigs("title");
     $data['dsongs'] = $this->Vip_model->top20OfDay(1);
     $data['wsongs'] = $this->Vip_model->top20OfWeek(1);
     $data['msongs'] = $this->Vip_model->top20OfMonth(1);
     $data['ysongs'] = $this->Vip_model->top20OfYear(1);
     $data['dvideos'] = $this->Vip_model->top20OfDay(2);
     $data['wvideos'] = $this->Vip_model->top20OfWeek(2);
     $data['mvideos'] = $this->Vip_model->top20OfMonth(2);
     $data['yvideos'] = $this->Vip_model->top20OfYear(2);
     $data['facebook'] = $this->Vip_model->getConfigs("facebook");
     $data['youtube'] = $this->Vip_model->getConfigs("youtube");
     $data['soundcloud'] = $this->Vip_model->getConfigs("soundcloud");
     $data['vimeo'] = $this->Vip_model->getConfigs("vimeo");
     $data['instagram'] = $this->Vip_model->getConfigs("instagram");
     $this->load->view('index-trending', $data);
 }
Ejemplo n.º 6
0
 public static function renderLoginForm()
 {
     return \Am_Lite::getInstance()->renderLoginForm();
 }
Ejemplo n.º 7
0
<?php

include dirname(__FILE__) . "/../../../library/Am/Lite.php";
Am_Lite::getInstance()->checkAccess($_product_id);