示例#1
0
文件: Forum.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("forums", "forum");
     $this->registerScript("forums", "forum");
     $this->registerScript("forums", "category-cloud");
 }
示例#2
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("search", "searchresults");
     $this->assign("queryString", $_GET['q']);
     $this->show();
 }
示例#3
0
文件: Albums.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("gallery", "albums");
     $this->registerScript("gallery", "albums");
     $this->show();
 }
示例#4
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("friends", "friendslist");
     $this->registerCss("friends", "friends");
     $this->show();
 }
示例#5
0
文件: Inbox.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("messages", "inbox");
     $this->registerCss("messages", "inbox");
     $this->render();
 }
示例#6
0
文件: Board.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("forums", "board");
     $this->registerScript("forums", "board");
     $this->registerCunityPlugin("summernote", ["css/summernote.css", "js/summernote.min.js"]);
     $this->registerScript("forums", "category-cloud");
 }
示例#7
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("events", "event");
     $this->registerCss("events", "event-edit");
     $this->registerScript("events", "event-edit");
     $this->assign("max_filesize", ini_get('upload_max_filesize'));
     $this->assign("upload_limit", Cunity::get("config")->site->upload_limit);
 }
示例#8
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("profile", "jquery.imgareaselect.pack");
     $this->registerScript("profile", "profile-crop");
     $this->registerCss("profile", "profile");
     $this->registerCss("profile", "imgareaselect-animated");
     $this->registerCss("profile", "profile-crop");
 }
示例#9
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("profile", "jquery.imgareaselect.pack");
     $this->registerScript("events", "event-crop");
     $this->registerCss("events", "event");
     $this->registerCss("profile", "imgareaselect-animated");
     $this->registerCss("events", "event-crop");
     $this->assign("eventid", $_GET['y']);
 }
示例#10
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("register", "registration");
     $this->registerCss("register", "style");
     $this->registerCunityPlugin("bootstrap-datepicker", ["css/bootstrap-datepicker.css", "js/bootstrap-datepicker.js"]);
     $profileFields = new ProfileFields();
     $this->assign('profileFields', $profileFields->getRegistrationFields());
     $this->assign('success', false);
 }
示例#11
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("newsfeed", "newsfeed");
     $this->registerCss("newsfeed", "newsfeed");
     $this->registerCss("gallery", "lightbox");
     $this->registerScript("gallery", "jquery.blueimp-gallery");
     $this->registerScript("gallery", "lightbox");
     $this->show();
 }
示例#12
0
文件: Album.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("gallery", "album");
     $this->registerCss("gallery", "lightbox");
     $this->registerScript("gallery", "uploader");
     $this->registerScript("gallery", "jquery.blueimp-gallery");
     $this->registerScript("gallery", "album");
     $this->registerScript("gallery", "lightbox");
     $this->registerCunityPlugin("plupload", ["js/plupload.full.min.js"]);
 }
示例#13
0
文件: Events.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("events", "events");
     $this->registerScript("events", "events");
     $this->registerCunityPlugin("bootstrap-datepicker", ["css/bootstrap-datepicker.css", "js/bootstrap-datepicker.js"]);
     $this->registerCunityPlugin("bootstrap-timepicker", ["css/bootstrap-timepicker.css", "js/bootstrap-timepicker.min.js"]);
     $this->registerCunityPlugin("calendar", ["css/calendar.css", "js/calendar.min.js"]);
     $this->registerCunityPlugin("js", ["underscore-min.js"]);
     $this->show();
 }
示例#14
0
 /**
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("profile", "profile-edit");
     $this->registerScript("profile", "profile");
     $this->registerCss("profile", "profile");
     $this->registerCss("profile", "profile-edit");
     $this->registerCunityPlugin("js", ["jquery-ui-1.10.4.custom.min.js"]);
     $this->registerCunityPlugin("summernote", ["css/summernote.css", "js/summernote.min.js"]);
     $this->assign("upload_limit", Cunity::get("config")->site->upload_limit);
 }
示例#15
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     if (Login::loggedIn()) {
         $user = $_SESSION['user'];
         $userData = ["firstname" => $user->firstname, "lastname" => $user->lastname, "email" => $user->email];
     } else {
         $userData = ["firstname" => "", "lastname" => "", "email" => ""];
     }
     $this->registerScript("contact", "contactform");
     $this->assign("userData", $userData);
     $this->show();
 }
示例#16
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("profile", "profile");
     $this->registerScript("gallery", "albums");
     $this->registerScript("newsfeed", "newsfeed");
     $this->registerCss("profile", "profile");
     $this->registerCss("newsfeed", "newsfeed");
     $this->registerCss("gallery", "albums");
     $this->registerCss("friends", "friends");
     $this->registerCss("gallery", "lightbox");
     $this->registerScript("gallery", "jquery.blueimp-gallery");
     $this->registerScript("gallery", "lightbox");
 }
示例#17
0
文件: View.php 项目: rcrrich/cunity
 /**
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->_templateDir = "Admin";
 }
示例#18
0
文件: Admin.php 项目: rcrrich/cunity
 /**
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     \Cunity\Admin\Models\Login::loginRequired();
     $this->show();
 }
示例#19
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("memberlist", "memberlist");
     $this->show();
 }
示例#20
0
文件: View.php 项目: rcrrich/cunity
 /**
  * @param $e
  * @throws \Exception
  */
 public function __construct(\Exception $e)
 {
     parent::__construct();
     $this->assign('MESSAGE', $e->getMessage());
     $this->show();
 }
示例#21
0
 /**
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
 }
示例#22
0
文件: Page.php 项目: rcrrich/cunity
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("pages", "page");
 }
示例#23
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerCss("register", "resetpw");
 }
示例#24
0
 /**
  * @throws \Cunity\Core\Exception
  * @throws \Exception
  */
 public function __construct()
 {
     parent::__construct();
     $this->registerScript("messages", "conversation");
     $this->registerCss("messages", "conversation");
 }