当前位置: 首页>>代码示例>>PHP>>正文


PHP comquick2cartHelper::isMultivenderOFF方法代码示例

本文整理汇总了PHP中comquick2cartHelper::isMultivenderOFF方法的典型用法代码示例。如果您正苦于以下问题:PHP comquick2cartHelper::isMultivenderOFF方法的具体用法?PHP comquick2cartHelper::isMultivenderOFF怎么用?PHP comquick2cartHelper::isMultivenderOFF使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在comquick2cartHelper的用法示例。


在下文中一共展示了comquick2cartHelper::isMultivenderOFF方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: display

 function display($tpl = null)
 {
     $mainframe = JFactory::getApplication();
     $input = $mainframe->input;
     $comquick2cartHelper = new comquick2cartHelper();
     // check for multivender COMPONENT PARAM
     $isMultivenderOFFmsg = $comquick2cartHelper->isMultivenderOFF();
     if (!empty($isMultivenderOFFmsg)) {
         print $isMultivenderOFFmsg;
         return false;
     }
     $option = $input->get('option');
     $filter_order_Dir = $mainframe->getUserStateFromRequest("{$option}.filter_order_Dir", 'filter_order_Dir', 'desc', 'word');
     $filter_type = $mainframe->getUserStateFromRequest("{$option}.filter_type", 'filter_type', 0, 'string');
     $filter_state = $mainframe->getUserStateFromRequest($option . 'search_list', 'search_list', '', 'string');
     $search = $mainframe->getUserStateFromRequest($option . 'search', 'search', '', 'string');
     $search = JString::strtolower($search);
     $limit = '';
     $limitstart = '';
     $cid[0] = '';
     if ($search == null) {
         $search = '';
     }
     $edit = $input->get('edit', '');
     $layout = $input->get('layout', '');
     $cid = $input->get('cid', '', 'ARRAY');
     $model = $this->getModel('Managecoupon');
     // get store id (list))from model and pass to  getManagecoupon()
     $this->store_role_list = $store_role_list = $comquick2cartHelper->getStoreIds();
     // retrun store_id,role etc with order by role,store_id
     $change_store = $input->get->get('change_store', 0, 'INT');
     //	$this->authorized_store_id=$comquick2cartHelper->store_authorize("managecoupon_default",isset($change_storeto)?$change_storeto:$store_role_list[0]['store_id']);
     $this->store_id = $store_id = !empty($change_storeto) ? $change_storeto : $store_role_list[0]['store_id'];
     $this->selected_store = $store_id;
     // if user has store OR has ROLE to create  then only create coupon or view list :: following coupon return store_id if EXIST
     if ($cid) {
         //$total 		= $this->get( 'Total');
         $pagination = $this->get('Pagination');
         $this->authorized_store_id = $authorized_store_id = $comquick2cartHelper->createCouponAuthority($store_id, $cid[0]);
         //$this->authorized_store_id= storeid of user
         $coupons = $model->Editlist($cid[0]);
         $limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', 'limit', 'int');
         $limitstart = $mainframe->getUserStateFromRequest($option . 'limitstart', 'limitstart', 0, 'int');
         $model->setState('limit', $limit);
         // Set the limit variable for query later on
         $model->setState('limitstart', $limitstart);
     } else {
         /************ list view  and new *******************/
         $this->authorized_store_id = $authorized_store_id = $comquick2cartHelper->createCouponAuthority($store_id);
         //$this->authorized_store_id= storeid of user
         if (!empty($authorized_store_id)) {
             if (!empty($store_id)) {
                 $coupons = $model->getManagecoupon($store_id);
                 //($authorized_store_id);
                 $pagination = $model->getPagination($store_id);
             }
             /*if( !empty($change_storeto))  // fetch coupon list according to new store
             		{
             			 $coupons 		= $model->getManagecoupon($change_storeto);//($authorized_store_id);
             			 $this->selected_store=$change_storeto;
             		}
             		else if( !empty($store_role_list))
             		{
             			$this->selected_store=$store_role_list[0]['store_id'];
             		 	$coupons 		= $model->getManagecoupon($store_role_list[0]['store_id']);//($authorized_store_id);
             		}*/
         }
         $limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', 'limit', 'int');
         $limitstart = $mainframe->getUserStateFromRequest($option . 'limitstart', 'limitstart', 0, 'int');
         $model->setState('limit', $limit);
         // Set the limit variable for query later on
         $model->setState('limitstart', $limitstart);
     }
     // search filter
     $lists['search_select'] = $search;
     $lists['search'] = $search;
     $lists['search_list'] = $filter_state;
     $lists['order'] = $filter_type;
     $lists['order_Dir'] = $filter_order_Dir;
     $lists['limit'] = $limit;
     $lists['limitstart'] = $limitstart;
     // Get data from the model
     $this->assignRef('lists', $lists);
     $this->assignRef('pagination', $pagination);
     if (!empty($coupons)) {
         $this->assignRef('coupons', $coupons);
     }
     $this->_setToolBar();
     parent::display($tpl);
 }
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:90,代码来源:view.html.php


注:本文中的comquick2cartHelper::isMultivenderOFF方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。