-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
95d2d61
commit dd1f310
Showing
4 changed files
with
42 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
<?php | ||
/* | ||
* 存放 一些基本的非数据库数据 如 html | ||
* 都是数组 | ||
/** | ||
* FecMall file. | ||
* | ||
* @link http://www.fecmall.com/ | ||
* @copyright Copyright (c) 2016 FecMall Software LLC | ||
* @license http://www.fecmall.com/license/ | ||
*/ | ||
|
||
namespace fecshop\app\appfront\modules\Cms\block\article; | ||
|
||
use fec\helpers\CRequest; | ||
use Yii; | ||
|
||
/** | ||
* @author Terry Zhao <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class Index | ||
{ | ||
protected $_artile; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
<?php | ||
/* | ||
* 存放 一些基本的非数据库数据 如 html | ||
* 都是数组 | ||
/** | ||
* FecMall file. | ||
* | ||
* @link http://www.fecmall.com/ | ||
* @copyright Copyright (c) 2016 FecMall Software LLC | ||
* @license http://www.fecmall.com/license/ | ||
*/ | ||
|
||
namespace fecshop\app\appfront\modules\Cms\block\home; | ||
|
||
use Yii; | ||
|
||
/** | ||
* @author Terry Zhao <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class Index | ||
{ | ||
public function getLastData() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
<?php | ||
|
||
/** | ||
* FecMall file. | ||
* | ||
* @link http://www.fecmall.com/ | ||
* @copyright Copyright (c) 2016 FecShop Software LLC | ||
* @license http://www.fecmall.com/license/ | ||
*/ | ||
namespace fecshop\app\appfront\modules\Cms\controllers; | ||
|
||
use fecshop\app\appfront\modules\AppfrontController; | ||
use Yii; | ||
|
||
/** | ||
* @author Terry Zhao <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class HomeController extends AppfrontController | ||
{ | ||
public function init() | ||
|
13 changes: 11 additions & 2 deletions
13
app/appfront/modules/Site/controllers/HelperController.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
<?php | ||
|
||
/** | ||
* FecMall file. | ||
* | ||
* @link http://www.fecmall.com/ | ||
* @copyright Copyright (c) 2016 FecMall Software LLC | ||
* @license http://www.fecmall.com/license/ | ||
*/ | ||
namespace fecshop\app\appfront\modules\Site\controllers; | ||
|
||
use fecshop\app\appfront\modules\AppfrontController; | ||
use Yii; | ||
|
||
/** | ||
* @author Terry Zhao <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class HelperController extends AppfrontController | ||
{ | ||
public function actions() | ||
|