luckynvic / yii2-heart

Extension For Yii Framework 2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yii2-heart

Yii2-heart is extension for Yii Framework version 2.0. It is set of extension (widget, modules, wrapper, etc) to easiest developer in application development.

Warning : This extension under development or PUBLIC PREVIEW :)

Roadmap

Done

$objPHPExcel = new \PHPExcel();
  • Wrap TCPDF (no wrap only use)
  • Wrap TinyButStrong
  • Database Migration
  • Import Excel ready
  • Gii Improved base on above extension

Progress..

  • Update manual
  • Bugfix

Waiting

  • Wrap Highchart
  • any idea?

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require hscstudio/yii2-heart "dev-master"

or add

"hscstudio/yii2-heart": "dev-master"

to the require section of your composer.json file.

Database migration

yii migrate --migrationPath=@hscstudio\heart\migrations

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
	'bootstrap' => [		
		'heart',
		...
	],
	'modules' => [
		'heart' => [
			'class' => 'hscstudio\heart\Module',
			'features'=>[
				// fontawesome, datecontrol (kartik), gridview (kartik), gii, 
				'fontawesome'=>true, // use false for not use it
				'datecontrol'=>true,// use false for not use it
				'gridview'=>true,// use false for not use it
				'gii'=>true, // use false for not use it
				// privilege (yii2-admin), user (yii2-user) please read guide
			],
		],
		...
	],
	...
];

And then please read Guide

About

Extension For Yii Framework 2.0

License:BSD 2-Clause "Simplified" License


Languages

Language:PHP 89.3%Language:JavaScript 7.8%Language:CSS 2.9%