Skip to content

Commit

Permalink
update lulucms
Browse files Browse the repository at this point in the history
  • Loading branch information
yiifans committed Jun 4, 2014
1 parent 8b45583 commit f01333f
Show file tree
Hide file tree
Showing 325 changed files with 20,342 additions and 1,033 deletions.
127 changes: 8 additions & 119 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,126 +1,15 @@
Yii 2 Advanced Application Template
LuLu CMS
===================================

Yii 2 Advanced Application Template is a skeleton Yii 2 application best for
developing complex Web applications with multiple tiers.
这个是基于 Yii Framework(2.0-beta)开发的一套CMS管理系统

The template includes three tiers: front end, back end, and console, each of which
is a separate Yii application.
想了解更多信息请加入 QQ群:308110659

The template is designed to work in a team development environment. It supports
deploying the application in different environments.
This is a CMS system powered by Yii Framework(2.0-beta)

For more information please join QQ group:308110659

DIRECTORY STRUCTURE
-------------------
Install

```
common
config/ contains shared configurations
mail/ contains view files for e-mails
models/ contains model classes used in both backend and frontend
tests/ contains various tests for objects that are common among applications
console
config/ contains console configurations
controllers/ contains console controllers (commands)
migrations/ contains database migrations
models/ contains console-specific model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the console application
backend
assets/ contains application assets such as JavaScript and CSS
config/ contains backend configurations
controllers/ contains Web controller classes
models/ contains backend-specific model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the backend application
views/ contains view files for the Web application
web/ contains the entry script and Web resources
frontend
assets/ contains application assets such as JavaScript and CSS
config/ contains frontend configurations
controllers/ contains Web controller classes
models/ contains frontend-specific model classes
runtime/ contains files generated during runtime
tests/ contains various tests for the frontend application
views/ contains view files for the Web application
web/ contains the entry script and Web resources
vendor/ contains dependent 3rd-party packages
environments/ contains environment-based overrides
```


REQUIREMENTS
------------

The minimum requirement by this application template that your Web server supports PHP 5.4.0.


INSTALLATION
------------

### Install from an Archive File

Extract the archive file downloaded from [yiiframework.com](http://www.yiiframework.com/download/) to
a directory named `advanced` that is directly under the Web root.

Then follow the instructions given in "GETTING STARTED".


### Install via Composer

If you do not have [Composer](http://getcomposer.org/), you may install it by following the instructions
at [getcomposer.org](http://getcomposer.org/doc/00-intro.md#installation-nix).

You can then install the application using the following command:

~~~
php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced advanced
~~~


GETTING STARTED
---------------

After you install the application, you have to conduct the following steps to initialize
the installed application. You only need to do these once for all.

1. Run command `init` to initialize the application with a specific environment.
2. Create a new database and adjust the `components['db']` configuration in `common/config/main-local.php` accordingly.
3. Apply migrations with console command `yii migrate`. This will create tables needed for the application to work.
4. Set document roots of your Web server:

- for frontend `/path/to/yii-application/frontend/web/` and using the URL `http://frontend/`
- for backend `/path/to/yii-application/backend/web/` and using the URL `http://backend/`

To login into the application, you need to first sign up, with any of your email address, username and password.
Then, you can login into the application with same email address and password at any time.

TESTING
-------

Install additional composer packages:
* `php composer.phar require --dev "codeception/codeception: 1.8.*@dev" "codeception/specify: *" "codeception/verify: *"`

This application boilerplate use database in testing, so you should create three databases that are used in tests:
* `yii2_advanced_unit` - database for unit tests;
* `yii2_advanced_functional` - database for functional tests;
* `yii2_advanced_acceptance` - database for acceptance tests.

To make your database up to date, you can run in needed test folder `yii migrate`, for example
if you are starting from `frontend` tests then you should run `yii migrate` in each suite folder `acceptance`, `functional`, `unit`
it will upgrade your database to the last state according migrations.

To be able to run acceptance tests you need a running webserver. For this you can use the php builtin server and run it in the directory where your main project folder is located. For example if your application is located in `/www/advanced` all you need to is:
`cd /www` and then `php -S 127.0.0.1:8080` because the default configuration of acceptance tests expects the url of the application to be `/advanced/`.
If you already have a server configured or your application is not located in a folder called `advanced`, you may need to adjust the `TEST_ENTRY_URL` in `frontend/tests/_bootstrap.php` and `backend/tests/_bootstrap.php`.

After that is done you should be able to run your tests, for example to run `frontend` tests do:

* `cd frontend`
* `../vendor/bin/codecept build`
* `../vendor/bin/codecept run`

In similar way you can run tests for other application tiers - `backend`, `console`, `common`.

You also can adjust you application suite configs and `_bootstrap.php` settings to use other urls and files, as it is can be done in `yii2-basic`.
Database:
import the sql script from lulucms\data\sql\lulucms.sql
1 change: 1 addition & 0 deletions _index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php
36 changes: 36 additions & 0 deletions backend/base/BaseBackActiveRecord.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php
namespace backend\base;

use Yii;

use yii\web;
use yii\web\Controller;
use yii\helpers\VarDumper;
use yii\db\ActiveRecord;
use TS\TActiveRecord;

class BaseBackActiveRecord extends TActiveRecord
{
public static function findAll($q = null)
{
$query = static::createQuery();
if (is_array($q)) {
return $query->where($q)->all();
} elseif ($q !== null) {
// query by primary key
$primaryKey = static::primaryKey();
if (isset($primaryKey[0])) {
return $query->where([$primaryKey[0] => $q])->all();
} else {
throw new InvalidConfigException(get_called_class() . ' must have a primary key.');
}
}
return $query->all();
}

public function info($var)
{
$dump=VarDumper::dumpAsString($var);
Yii::info($dump);
}
}
130 changes: 130 additions & 0 deletions backend/base/BaseBackController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
<?php

namespace backend\base;

use Yii;

use yii\web;
use yii\web\Controller;
use yii\helpers\VarDumper;
use app\controllers\CatalogController;
use TS\TController;
use common\models\Catalog;
use common\models\DefineModel;
use common\models\DefineTable;
use common\models\TplList;
use common\models\TplView;
use common\models\TplForm;
use common\models\TplCover;
use ts\helpers\TFileHelper;
use common\models\TplChannel;
use common\models\Channel;
use components\base\BaseController;


class BaseBackController extends BaseController
{
public $cachedChannel=[];
public $rootChannelList=[];

public function beforeAction($action)
{
//$this->info($action,__METHOD__);

if(parent::beforeAction($action))
{
$this->rootChannelList=Channel::findAll(['parent_id'=>0]);
$this->cachedChannel=\Yii::$app->params['cachedChannel'];
$channelTree=Channel::getChannelTree();

$this->setViewParam([
'rootChannelList' => $this->rootChannelList,
'cachedChannel' =>$this->cachedChannel,
'channelTree'=>$channelTree,
]);

//$this->info($this->getView()->params,__METHOD__);


return true;
}
return false;
}

public function getTableName($tableId)
{
$model=DefineTable::find($tableId);
if($model==null)
{
return 'unknow name('.$tableId.')';
}
return $model->name.'('.$tableId.')';
}

public function getTableList()
{
return DefineTable::findAll();
}

public function getTplChannelList()
{
$tplChannelList=TplChannel::findAll();
foreach ($tplChannelList as $tplChannel)
{
$tplChannel->table_name=$this->getTableName($tplChannel->table_id);
}
return $tplChannelList;
}

public function getTplListList()
{
$tplListList=TplList::findAll();
foreach ($tplListList as $tplList)
{
$tplList->table_name=$this->getTableName($tplList->table_id);
}

return $tplListList;
}

public function getTplViewList()
{
$tplViewList=TplView::findAll();
foreach ($tplViewList as $tplView)
{
$tplView->table_name=$this->getTableName($tplView->table_id);
}
return $tplViewList;
}
public function getFormList()
{
$tplFormList=TplForm::findAll();
foreach ($tplFormList as $tplForm)
{
$tplForm->table_name=$this->getTableName($tplForm->table_id);
}
return $tplFormList;
}



public function saveTplFileInFront($model,$dir='content')
{
$rootFrontend = \Yii::getAlias('@frontend');

$filePath=$rootFrontend.'/views/'.$dir.'/'.$model->file_name.'.php';
$content=$model->file_content;

TFileHelper::writeFile($filePath, $content);
}
public function saveTplFileInBack($model,$dir='content')
{
$rootFrontend = \Yii::getAlias('@backend');

$filePath=$rootFrontend.'/views/'.$dir.'/'.$model->file_name.'.php';
$content=$model->file_content;

TFileHelper::writeFile($filePath, $content);
}

}
37 changes: 37 additions & 0 deletions backend/base/BaseBackModel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
namespace backend\base;

use Yii;

use yii\web;
use yii\web\Controller;
use yii\helpers\VarDumper;
use yii\db\ActiveRecord;
use yii\base\Model;
use TS\TModel;

class BaseBackModel extends TModel
{
public static function findAll($q = null)
{
$query = static::createQuery();
if (is_array($q)) {
return $query->where($q)->all();
} elseif ($q !== null) {
// query by primary key
$primaryKey = static::primaryKey();
if (isset($primaryKey[0])) {
return $query->where([$primaryKey[0] => $q])->all();
} else {
throw new InvalidConfigException(get_called_class() . ' must have a primary key.');
}
}
return $query->all();
}

public function info($var)
{
$dump=VarDumper::dumpAsString($var);
Yii::info($dump);
}
}
2 changes: 0 additions & 2 deletions backend/config/.gitignore

This file was deleted.

12 changes: 12 additions & 0 deletions backend/config/main-local.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

$config = [];

if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = 'yii\debug\Module';
$config['modules']['gii'] = 'yii\gii\Module';
}

return $config;
3 changes: 3 additions & 0 deletions backend/config/params-local.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?php
return [
];
Loading

0 comments on commit f01333f

Please sign in to comment.