12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * 品牌获取
- */
- defined('InShopNC') or exit('Access Invalid!');
- require_once(BASE_ROOT_PATH . '/helper/category_helper.php');
- class brandControl extends mobileHomeControl
- {
- public function __construct() {
- parent::__construct();
- }
- public function homeOp()
- {
- $brands = brand_helper::brandex();
- $blocks = [];
- $blocks[] = $brands['block'];
- self::outsuccess(array("special_list" => $blocks,'mobile_page' => mobile_page(1)));
- }
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- public function indexOp()
- {
- $brands = brand_helper::brands();
- self::outsuccess(array("brands" => $brands));
- }
- }
|