1234567891011121314151617 |
- <?php
- /**
- * [WeEngine System] Copyright (c) 2014 WE7.CC
- * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
- */
- define('FRAME', 'mc');
- $frames = buildframes(array('mc'));
- $frames = $frames['mc'];
- if($controller == 'wechat') {
- if(in_array($action, array('location'))) {
- define('ACTIVE_FRAME_URL', url('activity/store/list'));
- } elseif(in_array($action, array('card'))) {
- define('ACTIVE_FRAME_URL', url('wechat/card/list'));
- }
- }
|