howardeagle/yii2-inline-widgets-behavior
Composer 安装命令:
composer require howardeagle/yii2-inline-widgets-behavior
包简介
Allows to render widgets in page content in Yii2 Framework based projects
README 文档
README
Allows to render widgets in page content in Yii2 Framework based projects
Install
Either run
$ php composer.phar require --prefer-dist outOFFspace/Yii2-inline-widgets-behavior "*"
or add
"outOFFspace/Yii2-inline-widgets-behavior": "*"
~~~
to the `require` section of your `composer.json file`.
Usage example
-------------
### Add a allowed widgets list into `config/main.php`:
```php
return [
// ...
'params' => [
// ...
'runtimeWidgets'=> [
'common\widgets\LastPosts',
]
]
]
```
### Create widgets:
```php
class LastPostsWidget extends Widget
{
public $tpl = 'default';
public function run()
{
$posts = Post::find()->published()->all();
return $this->render('LastPosts/' . $this->tpl, [
'posts' => $posts,
]);
}
}
```
### Attach the behavior to a main controller:
```php
use howard\behaviors\iwb\InlineWidgetsBehavior;
class DefaultController extends Controller
{
public function behaviors()
{
return [
'InlineWidgetsBehavior' => [
'class'=> InlineWidgetsBehavior::className(),
'namespace'=> 'common\components\widgets', // default namespace (optional)
'widgets'=> \Yii::$app->params['runtimeWidgets'],
'startBlock'=> '[*',
'endBlock'=> '*]',
],
];
}
}
```
### You can define a global classname suffix like 'Widget':
```php
class DefaultController extends Controller
{
public function behaviors()
{
return [
'InlineWidgetsBehavior' => [
'class' => InlineWidgetsBehavior::className(),
'widgets' => \Yii::$app->params['runtimeWidgets'],
'classSuffix' => 'Widget',
],
];
}
}
```
for using short names 'LastPosts' instead of 'LastPostsWidget' :
```php
return [
// ...
'params' => [
// ...
'runtimeWidgets' => [
'ContactsForm',
'Comments',
'common\widgets\LastPosts',
]
]
}
```
For insert widgets in content you can use string of this format in your text:
~~~
<startBlock><WidgetName>[|<attribute>=<value>[;<attribute>=<value>]]<endBlock>
~~~
For rendering widgets in any View you must call `Controller::decodeWidgets()` method for model HTML content.
### For example:
```php
<?php $model->text = '
<h2>Lorem ipsum</h2>
<h2>Latest posts</h2>
<p>[*LastPosts*]</p>
<h2>Latest posts (with parameters)</h2>
<p>[*LastPosts|tpl=small*]</p>
<h2>Latest posts (with inner caching)</h2>
<p>[*LastPosts|tpl=small;cache=300*]</p>
<p>Dolor...</p>
'; ?>
<h1><?= Html::encode($model->title); ?></h1>
<?= $this->context->decodeWidgets($model->text); ?>
```
to have an access to the model from widgets just specify the 'model' variable in `Controller::decodeWidgets()` method:
```php
<?= $this->context->decodeWidgets($model->text, $model); ?>
```
统计信息
- 总下载量: 1.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 3
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2014-11-20