p2made/yii2-p2y2-things-demo

This package is abandoned and no longer maintained. The author suggests using the p2made/p2y2-things-demo package instead.

Not really a theme. A set of pages to demonstrate p2made/p2y2-things, bundled as a theme.

Installs: 5 352

Dependents: 3

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:yii2-extension

5.0.0 2021-09-11 03:22 UTC

This package is auto-updated.

Last update: 2021-09-22 02:32:15 UTC


README

License Total Downloads Monthly Downloads Latest Stable Version Latest Unstable Version

¡¡ Notice !!

After an extented period of life getting in the way I'm back to Yii2 development. I'll be rebasing every project as I resume work on it. Projects that use Bootstrap will resume as version 5.0.0 for Bootstrap 5.x.

A set of pages to demonstrate p2made/p2y2-things, bundled as a theme.

It declares p2made/p2y2-things as a dependancy.

Installation

The preferred way to install P2Y2Things Demo is through composer. Depending on your composer installation, run one of the following commands:

composer require --prefer-dist p2made/p2y2-things-demo "^5.0"

or

php composer.phar require --prefer-dist p2made/p2y2-things-demo "^5.0"

Alternatively add:

	"p2made/p2y2-things-demo": "^5.0"

to the requires section of your composer.json file & P2Y2Things Demo will be installed next time you run composer update.

The files are installed via Yii's recommended usage of the fxp/composer-asset-plugin.

Quick Start

Once the extension is installed, you can have a preview by reconfiguring the path mappings of the view component:

	'components' => [
		'view' => [
			'theme' => [
				'pathMap' => [
					'@app/views' => '@vendor/p2m/p2y2-things-demo/views',
				],
			],
		],
	],

To view pages in site/pages/ you need to modify actions() in the SiteController:

	public function actions()
	{
		return [
			...
			'page' => [
				'class' => 'yii\web\ViewAction',
			],
		];
	}

And then...

P2Y2Things Demo uses P2Y2Things which requires some Yii 2 assets to be nullified to avoid conflicts through double loading. Modify common/config/main.php with...

	'components' => [
		'assetManager' => [
			'bundles' => [
				'yii\web\JqueryAsset' => [
					'sourcePath' => null, 'js' => [],
				],
				'yii\bootstrap\BootstrapAsset' => [
					'sourcePath' => null, 'css' => [],
				],
				'yii\bootstrap\BootstrapPluginAsset' => [
					'sourcePath' => null, 'js' => [],
				],
				'yii\jui\JuiAsset' => [
					'sourcePath' => null, 'css' => [], 'js' => [],
				],
				'\rmrevin\yii\fontawesome\AssetBundle' => [
					'sourcePath' => null, 'css' => [],
				],
			],
		],
		...
	],

DO NOT modify the views in the views/ folder. Your changes will be lost next time you run composer update.

You can copy elements from these examples into your own views.