This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @static | |
* @param $text | |
* @param int $length | |
* @param string $ending | |
* @param bool $exact | |
* @param bool $considerHtml | |
* @return string | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function init() | |
{ | |
parent::init(); | |
$this->fbComp = Yii::app()->facebook; | |
Yii::app()->theme = 'rauch'; | |
} | |
public function actionIndex() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param $parent_id | |
* @return array|bool | |
*/ | |
protected static function checkChildrenForMenu($parent_id){ | |
if($parent_id == 0){ | |
return false; | |
} | |
$data =self::setMenuTree($parent_id,null); | |
return $data; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace common\models; | |
use Yii; | |
use yii\base\Model; | |
use yii\helpers\VarDumper; | |
/** | |
* LoginForm is the model behind the login form. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace common\models; | |
use yii\db\ActiveRecord; | |
use yii\helpers\Security; | |
use yii\web\IdentityInterface; | |
/** | |
* Class User | |
* @package common\models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<?= $form->field( | |
$profile, | |
'name', | |
[ | |
'options' => | |
['class' =>'col-lg-6'] | |
])->textInput( | |
[ | |
'class' => 'form-control' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$rootDir = __DIR__ . '/../..'; | |
$params = array_merge( | |
require($rootDir . '/common/config/params.php'), | |
require($rootDir . '/environments/dev/common/config/params-local.php'), | |
require(__DIR__ . '/params.php'), | |
require(__DIR__ . '/params-local.php') | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is the configuration for generating message translations | |
* for the Yii framework. It is used by the 'yiic message' command. | |
*/ | |
return array( | |
'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..', | |
'messagePath'=>dirname(__FILE__), | |
'languages'=>['de-DE'], | |
'fileTypes'=>array('php'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<?= Html::submitButton(Yii::t('app.signup','Signup'), ['class' => 'btn btn-primary']) ?> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace common\models; | |
/** | |
* This is the model class for table "tbl_countries". | |
* | |
* @property integer $id | |
* @property string $ccode | |
* @property string $country |