Git Product home page Git Product logo

Comments (6)

loveorigami avatar loveorigami commented on June 12, 2024

Please, write your frontend and backed configs

from yii2-shortcodes-pack.

loveorigami avatar loveorigami commented on June 12, 2024

If all good, you need install this shortcodes pack in Install tab. https://github.com/loveorigami/yii2-plugins-system

from yii2-shortcodes-pack.

ecthkjim avatar ecthkjim commented on June 12, 2024

my backend config ( I copied your code):

    'modules' => [
		'plugins' => [
			'class' => 'lo\plugins\Module',
			'pluginsDir'=>[
				'@lo/plugins/core', // default dir with core plugins
				// '@common/plugins', // dir with our plugins
			]
		],	
	],
....
'components' => [
		'plugins' => [
			'class' => lo\plugins\components\PluginsManager::class,
			'appId' => 2, // lo\plugins\BasePlugin::APP_BACKEND
		],
		'view' => [
			'class' => lo\plugins\components\View::class,
		]
]

frontend config:

'components' => [
		'plugins' => [
			'class' => lo\plugins\components\PluginsManager::class,
			'appId' => 1, // lo\plugins\BasePlugin::APP_FRONTEND
			// by default
			'enablePlugins' => true,
			'shortcodesParse' => true,
			'shortcodesIgnoreBlocks' => [
				'<pre[^>]*>' => '<\/pre>',
				//'<div class="content[^>]*>' => '<\/div>',
			]
		],
		'view' => [
			'class' => lo\plugins\components\View::class,
		]
]

from yii2-shortcodes-pack.

ecthkjim avatar ecthkjim commented on June 12, 2024

I have the following in my install tab:
Hello World
External Links
Http Authentication

I have installed Hello World, it works
But there is no shortcode to install.

from yii2-shortcodes-pack.

loveorigami avatar loveorigami commented on June 12, 2024

Need 'lo/shortcodes' // dir with shortcodes pack

3. Configure application
Let's start with defining module in @backend/config/main.php:

'modules' => [
    'plugins' => [
        'class' => 'lo\plugins\Module',
        'pluginsDir'=>[
            '@lo/plugins/core', // default dir with core plugins
			'@lo/shortcodes' // dir with shortcodes pack
            '@common/shortcodes', // dir with our plugins with shortcodes
        ]
    ],
],

from yii2-shortcodes-pack.

ecthkjim avatar ecthkjim commented on June 12, 2024

Thanks, I got it. I haven’t add the dir with shortcodes pack to the config

from yii2-shortcodes-pack.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.