@@ -12,11 +12,11 @@ |
||
| 12 | 12 | 'label' => Yii::t('CommentModule.widgets_views_comments', 'Show all {total} comments.', array('{total}' => $total)), |
| 13 | 13 | 'ajaxOptions' => [ |
| 14 | 14 | 'type' => 'POST', |
| 15 | - 'success' => new yii\web\JsExpression("function(html) { $('#comments_area_" . $id . "').html(html); }"), |
|
| 15 | + 'success' => new yii\web\JsExpression("function(html) { $('#comments_area_".$id."').html(html); }"), |
|
| 16 | 16 | 'url' => Url::to(['/comment/comment/show', 'contentModel' => $modelName, 'contentId' => $modelId]), |
| 17 | 17 | ], |
| 18 | 18 | 'htmlOptions' => [ |
| 19 | - 'id' => $id . "_showAllLink", |
|
| 19 | + 'id' => $id."_showAllLink", |
|
| 20 | 20 | 'class' => 'show show-all-link' |
| 21 | 21 | ], |
| 22 | 22 | 'tag' => 'a' |
@@ -7,16 +7,16 @@ |
||
| 7 | 7 | <div class="panel panel-default panel-tour" id="getting-started-panel"> |
| 8 | 8 | <?php |
| 9 | 9 | // Temporary workaround till panel widget rewrite in 0.10 verion |
| 10 | - $removeOptionHtml = "<li>" . \humhub\widgets\ModalConfirm::widget(array( |
|
| 10 | + $removeOptionHtml = "<li>".\humhub\widgets\ModalConfirm::widget(array( |
|
| 11 | 11 | 'uniqueID' => 'hide-panel-button', |
| 12 | 12 | 'title' => '<strong>Remove</strong> tour panel', |
| 13 | 13 | 'message' => 'This action will remove the tour panel from your dashboard. You can reactivate it at<br>Account settings <i class="fa fa-caret-right"></i> Settings.', |
| 14 | 14 | 'buttonTrue' => 'Ok', |
| 15 | 15 | 'buttonFalse' => 'Cancel', |
| 16 | - 'linkContent' => '<i class="fa fa-eye-slash"></i> ' . Yii::t('TourModule.widgets_views_tourPanel', ' Remove panel'), |
|
| 16 | + 'linkContent' => '<i class="fa fa-eye-slash"></i> '.Yii::t('TourModule.widgets_views_tourPanel', ' Remove panel'), |
|
| 17 | 17 | 'linkHref' => Url::to(["/tour/tour/hide-panel", "ajax" => 1]), |
| 18 | 18 | 'confirmJS' => '$(".panel-tour").slideToggle("slow")' |
| 19 | - ), true) . "</li>"; |
|
| 19 | + ), true)."</li>"; |
|
| 20 | 20 | ?> |
| 21 | 21 | |
| 22 | 22 | <!-- Display panel menu widget --> |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | <!-- STYLE --> |
| 4 | 4 | |
| 5 | - <link href="<?php echo $this->theme->getBaseUrl() . '/css/orbit.css'; ?>" rel="stylesheet"> |
|
| 5 | + <link href="<?php echo $this->theme->getBaseUrl().'/css/orbit.css'; ?>" rel="stylesheet"> |
|
| 6 | 6 | |
| 7 | 7 | <!-- BLOCK --> |
| 8 | 8 | |
@@ -16,12 +16,12 @@ discard block |
||
| 16 | 16 | --> |
| 17 | 17 | |
| 18 | 18 | <div id="featured"> |
| 19 | - <img src="<?php echo $this->theme->getBaseUrl() . '/img/orbit/banner/1.jpg'; ?>" rel="caption-1" /> |
|
| 19 | + <img src="<?php echo $this->theme->getBaseUrl().'/img/orbit/banner/1.jpg'; ?>" rel="caption-1" /> |
|
| 20 | 20 | <a href="http://humhub.com" target="_blank"> |
| 21 | - <img src="<?php echo $this->theme->getBaseUrl() . '/img/orbit/banner/2.jpg'; ?>" rel="caption-2" /> |
|
| 21 | + <img src="<?php echo $this->theme->getBaseUrl().'/img/orbit/banner/2.jpg'; ?>" rel="caption-2" /> |
|
| 22 | 22 | </a> |
| 23 | - <img src="<?php echo $this->theme->getBaseUrl() . '/img/orbit/banner/3.jpg'; ?>" rel="caption-3" /> |
|
| 24 | - <img src="<?php echo $this->theme->getBaseUrl() . '/img/orbit/banner/4.jpg'; ?>" rel="caption-4" /> |
|
| 23 | + <img src="<?php echo $this->theme->getBaseUrl().'/img/orbit/banner/3.jpg'; ?>" rel="caption-3" /> |
|
| 24 | + <img src="<?php echo $this->theme->getBaseUrl().'/img/orbit/banner/4.jpg'; ?>" rel="caption-4" /> |
|
| 25 | 25 | </div> |
| 26 | 26 | |
| 27 | 27 | <!-- CAPTIONS --> |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | <!-- JAVASCRIPT --> |
| 36 | 36 | |
| 37 | - <script src="<?php echo $this->theme->getBaseUrl() . '/js/jquery.orbit.min.js'; ?>"></script> |
|
| 37 | + <script src="<?php echo $this->theme->getBaseUrl().'/js/jquery.orbit.min.js'; ?>"></script> |
|
| 38 | 38 | <script type="text/javascript"> |
| 39 | 39 | $(window).load(function() { |
| 40 | 40 | $('#featured').orbit({ |
@@ -14,19 +14,19 @@ |
||
| 14 | 14 | <?php $ver = HVersion::VERSION; ?> |
| 15 | 15 | |
| 16 | 16 | <?php |
| 17 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/css/animate.min.css'); |
|
| 18 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/css/bootstrap.min.css'); |
|
| 19 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/css/animate.min.css'); |
|
| 20 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/css/style.css'); |
|
| 21 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/css/flatelements.css'); |
|
| 22 | - Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl . '/resources/font-awesome/css/font-awesome.min.css'); |
|
| 23 | - |
|
| 24 | - |
|
| 25 | - Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . '/js/bootstrap.min.js'); |
|
| 26 | - Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . '/js/modernizr.js'); |
|
| 27 | - Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . '/js/jquery.cookie.js'); |
|
| 28 | - Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . '/js/jquery.flatelements.js'); |
|
| 29 | - Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl . '/js/jquery.placeholder.js'); |
|
| 17 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/css/animate.min.css'); |
|
| 18 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/css/bootstrap.min.css'); |
|
| 19 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/css/animate.min.css'); |
|
| 20 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/css/style.css'); |
|
| 21 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/css/flatelements.css'); |
|
| 22 | + Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/resources/font-awesome/css/font-awesome.min.css'); |
|
| 23 | + |
|
| 24 | + |
|
| 25 | + Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/js/bootstrap.min.js'); |
|
| 26 | + Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/js/modernizr.js'); |
|
| 27 | + Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/js/jquery.cookie.js'); |
|
| 28 | + Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/js/jquery.flatelements.js'); |
|
| 29 | + Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/js/jquery.placeholder.js'); |
|
| 30 | 30 | ?> |
| 31 | 31 | |
| 32 | 32 | <!-- The HTML5 shim, for IE6-8 support of HTML5 elements --> |
@@ -64,8 +64,8 @@ |
||
| 64 | 64 | <div id="trailer" class="is_overlay"> |
| 65 | 65 | <div class="is_frame"></div> |
| 66 | 66 | <video id="video" width="100%" height="auto" autoplay="autoplay" muted="" loop="loop" preload="auto"> |
| 67 | - <source src="<?php echo $this->theme->getBaseUrl() . '/video/intro.mp4'; ?>"></source> |
|
| 68 | - <source src="<?php echo $this->theme->getBaseUrl() . '/video/intro.webm'; ?>" type="video/webm"></source> |
|
| 67 | + <source src="<?php echo $this->theme->getBaseUrl().'/video/intro.mp4'; ?>"></source> |
|
| 68 | + <source src="<?php echo $this->theme->getBaseUrl().'/video/intro.webm'; ?>" type="video/webm"></source> |
|
| 69 | 69 | </video> |
| 70 | 70 | </div> |
| 71 | 71 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | 'isActive' => (Yii::$app->controller->id == "profile" && Yii::$app->controller->action->id == "index"), |
| 41 | 41 | )); |
| 42 | 42 | |
| 43 | - if (Yii::$app->getController()->getUser()->profile->about != "") { |
|
| 43 | + if (Yii::$app->getController()->getUser()->profile->about != "") { |
|
| 44 | 44 | $this->addItem(array( |
| 45 | 45 | 'label' => Yii::t('UserModule.widgets_ProfileMenuWidget', 'About'), |
| 46 | 46 | 'group' => 'profile', |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | 'sortOrder' => 300, |
| 49 | 49 | 'isActive' => (Yii::$app->controller->id == "profile" && Yii::$app->controller->action->id == "about"), |
| 50 | 50 | )); |
| 51 | - } |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | 53 | parent::init(); |
| 54 | 54 | } |