예제 #1
0
 public function init()
 {
     if (!$this->title) {
         $this->title = Yii::t('app', 'Latest News');
     }
     parent::init();
 }
예제 #2
0
파일: Events.php 프로젝트: awecode/awecms
 public function init()
 {
     if (!$this->title) {
         $this->title = Yii::t('app', 'Upcoming Events');
     }
     parent::init();
 }
예제 #3
0
 public function init()
 {
     if (!$this->title) {
         $this->title = Yii::t('app', 'Recent Pages');
     }
     parent::init();
 }
예제 #4
0
파일: TagCloud.php 프로젝트: awecode/awecms
 public function init()
 {
     if (!$this->title) {
         $this->title = Yii::t('app', 'Tag Cloud');
     }
     parent::init();
 }
예제 #5
0
파일: BlockW.php 프로젝트: awecode/awecms
 public function init()
 {
     $this->title = $this->block->title;
     //        $this->cssClass = $block->css_class;
     //        print_r($this->block->attributes);
     //        die();
     $this->headerCssClass = $this->block->title_css_class;
     $this->contentCssClass = $this->block->content_css_class;
     $this->visible = $this->block->enabled;
     parent::init();
 }
예제 #6
0
파일: Share.php 프로젝트: awecode/awecms
 public function init()
 {
     if (!$this->title) {
         $this->title = Yii::t('app', 'Share this page:');
     }
     if ($this->model) {
         $this->text = $this->model->title;
         $this->url = $this->model->url;
     }
     if (!$this->text) {
         $this->text = Yii::app()->getController()->pageTitle;
     }
     if (!$this->url) {
         $protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://';
         $this->url = $protocol . $_SERVER['HTTP_HOST'] . Yii::app()->request->requestUri;
     }
     $this->networks = array('Twitter' => array('format' => 'https://twitter.com/intent/tweet?text={{{text}}}&url={{{url}}}', 'tip' => Yii::t('app', 'Tweet this!'), 'icon' => 'twitter.ico'), 'Facebook' => array('format' => 'http://www.facebook.com/sharer.php?u={{{url}}}&t={{{text}}}', 'tip' => Yii::t('app', 'Share on Facebook!'), 'icon' => 'facebook.png'), 'Google+' => array('format' => 'https://plus.google.com/share?url={{{url}}}&gpsrc=frameless', 'tip' => Yii::t('app', 'Share on Google+!'), 'icon' => 'http://www.google.com/images/icons/product/gplus-16.png'), 'Delicious' => array('format' => 'http://delicious.com/save?title={{{text}}}&url={{{url}}}', 'tip' => Yii::t('app', 'Bookmark this on Delicious!'), 'icon' => 'delicious.png'), 'LinkedIn' => array('format' => 'http://www.linkedin.com/shareArticle?mini=true&url={{{url}}}&title={{{text}}}&summary=&source=', 'tip' => Yii::t('app', 'Share this on LinkedIn!'), 'icon' => 'linkedin.png'), 'Reddit' => array('format' => 'http://www.reddit.com/submit?url={{{url}}}&title={{{text}}}', 'tip' => Yii::t('app', 'Reddit this!'), 'icon' => 'reddit.png'), 'Tumblr' => array('format' => 'http://www.tumblr.com/share?v=3&u={{{url}}}&t={{{text}}}', 'tip' => Yii::t('app', 'Share on Tumblr!'), 'icon' => 'tumblr.png'), 'Digg' => array('format' => 'http://digg.com/submit?url={{{url}}}&title={{{text}}}', 'tip' => Yii::t('app', 'Digg this!'), 'icon' => 'digg.png'), 'AddToAny' => array('format' => 'http://www.addtoany.com/share_save#url={{{url}}}&title={{{text}}}&description=', 'tip' => Yii::t('app', 'Share on other networks!'), 'icon' => 'share.png'));
     if ($this->via) {
         $this->networks['Twitter']['format'] = 'https://twitter.com/intent/tweet?via={{{via}}}&text={{{text}}}&url={{{url}}}';
     }
     parent::init();
 }
예제 #7
0
 public function init()
 {
     $this->info = NPatro::getInfo();
     parent::init();
 }