tpoxa/shortcodes Wordpress style shorttags support for Yii2

shortcode

yii2-shortcodes

Wordpress style shortcodes support for Yii2

Most part of the code taken from https://github.com/Easy-Forex/WordPress-Shortcodes

Installation

{
    "require": {
        "tpoxa/shortcodes": "dev-master"
    }
}

Configuration

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){
                ///
                },

            ]
        ],

Usage


echo \Yii::$app->shortcodes->parse('
            <div><b>some content</b>  [lastphotos limit=8]  ></div>
    ')

Additional

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
    }

}

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

No stable releases.

Comments



No stable releases.



Apache-2.0 license
Stats
22 github stars & 12 github forks
6 downloads in the last day
120 downloads in the last 30 days
9112 total downloads