Fixes #3793: Changed inline autocomplete hints style to get more IDEs support

This commit is contained in:
Alexander Makarov 2014-06-20 16:11:45 +04:00
parent be792fd146
commit 2193366f3f
7 changed files with 20 additions and 30 deletions

View File

@ -1,10 +1,9 @@
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
/** /* @var $this \yii\web\View */
* @var \yii\web\View $this /* @var $content string */
* @var string $content
*/
?> ?>
<?php $this->beginPage() ?> <?php $this->beginPage() ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

View File

@ -5,10 +5,9 @@ use yii\bootstrap\NavBar;
use yii\widgets\Breadcrumbs; use yii\widgets\Breadcrumbs;
use app\assets\AppAsset; use app\assets\AppAsset;
/** /* @var $this \yii\web\View */
* @var \yii\web\View $this /* @var $content string */
* @var string $content
*/
AppAsset::register($this); AppAsset::register($this);
?> ?>
<?php $this->beginPage() ?> <?php $this->beginPage() ?>

View File

@ -1,9 +1,7 @@
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
/** /* @var $this yii\web\View */
* @var yii\web\View $this
*/
$this->title = 'About'; $this->title = 'About';
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
?> ?>

View File

@ -3,11 +3,10 @@ use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\widgets\ActiveForm;
use yii\captcha\Captcha; use yii\captcha\Captcha;
/** /* @var $this yii\web\View */
* @var yii\web\View $this /* @var $form yii\widgets\ActiveForm */
* @var yii\widgets\ActiveForm $form /* @var $model app\models\ContactForm */
* @var app\models\ContactForm $model
*/
$this->title = 'Contact'; $this->title = 'Contact';
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
?> ?>

View File

@ -2,12 +2,10 @@
use yii\helpers\Html; use yii\helpers\Html;
/** /* @var $this yii\web\View */
* @var yii\web\View $this /* @var $name string */
* @var string $name /* @var $message string */
* @var string $message /* @var $exception Exception */
* @var Exception $exception
*/
$this->title = $name; $this->title = $name;
?> ?>

View File

@ -1,7 +1,5 @@
<?php <?php
/** /* @var $this yii\web\View */
* @var yii\web\View $this
*/
$this->title = 'My Yii Application'; $this->title = 'My Yii Application';
?> ?>
<div class="site-index"> <div class="site-index">

View File

@ -2,11 +2,10 @@
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\widgets\ActiveForm;
/** /* @var $this yii\web\View */
* @var yii\web\View $this /* @var $form yii\widgets\ActiveForm */
* @var yii\widgets\ActiveForm $form /* @var $model app\models\LoginForm */
* @var app\models\LoginForm $model
*/
$this->title = 'Login'; $this->title = 'Login';
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
?> ?>