Wordpress style shortcodes support for Yii2
Most part of the code taken from https://github.com/Easy-Forex/WordPress-Shortcodes
{
"require": {
"tpoxa/shortcodes": "dev-master"
}
}
In config file
/config/main.php
Add shortcodes component
'components' => array(
...
'shortcodes' => [
'class' => 'tpoxa\shortcodes\Shortcode',
'callbacks' => [
'lastphotos' => ['frontend\widgets\lastPhoto\lastPhoto', 'widget'],
'anothershortcode'=>function($attrs, $content, $tag){
///
},
]
],
echo \Yii::$app->shortcodes->parse('
<div><b>some content</b> [lastphotos limit=8] ></div>
')
callbacks - An array of valid PHP callbacks. Keys should contain names of the shortcodes.
lastPhoto example class - common Yii2 widget
namespace frontend\widgets\lastPhoto; // your App class
use yii\base\Widget;
class lastPhoto extends Widget {
public $limit = 5; // this parameter will be overwritten by 8
public function run() {
// your widget content goes here
}
}
No stable releases.
Comments