Skip to content

Instantly share code, notes, and snippets.

View DrMabuse23's full-sized avatar
🏠
Working from home

Pascal Brewing DrMabuse23

🏠
Working from home
View GitHub Profile
/**
* @static
* @param $text
* @param int $length
* @param string $ending
* @param bool $exact
* @param bool $considerHtml
* @return string
*/
public function init()
{
parent::init();
$this->fbComp = Yii::app()->facebook;
Yii::app()->theme = 'rauch';
}
public function actionIndex()
{
/**
* @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;
<?php
namespace common\models;
use Yii;
use yii\base\Model;
use yii\helpers\VarDumper;
/**
* LoginForm is the model behind the login form.
<?php
namespace common\models;
use yii\db\ActiveRecord;
use yii\helpers\Security;
use yii\web\IdentityInterface;
/**
* Class User
* @package common\models
<div class="row">
<?= $form->field(
$profile,
'name',
[
'options' =>
['class' =>'col-lg-6']
])->textInput(
[
'class' => 'form-control'
<?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')
);
<?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'),
<div class="form-group">
<?= Html::submitButton(Yii::t('app.signup','Signup'), ['class' => 'btn btn-primary']) ?>
</div>
<?php
namespace common\models;
/**
* This is the model class for table "tbl_countries".
*
* @property integer $id
* @property string $ccode
* @property string $country