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


PHP SiteHelpers::is_customer方法代码示例

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


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

示例1: getUpdate

 function getUpdate(Request $request, $id = null)
 {
     if ($id == '') {
         if ($this->access['is_add'] == 0) {
             return Redirect::to('dashboard')->with('messagetext', \Lang::get('core.note_restric'))->with('msgstatus', 'error');
         }
     }
     if ($id != '') {
         if ($this->access['is_edit'] == 0) {
             return Redirect::to('dashboard')->with('messagetext', \Lang::get('core.note_restric'))->with('msgstatus', 'error');
         }
     }
     $row = $this->model->find($id);
     if ($row) {
         $this->data['row'] = $row;
     } else {
         $this->data['row'] = $this->model->getColumnTable('tb_customers');
     }
     $this->data['fields'] = \AjaxHelpers::fieldLang($this->info['config']['forms']);
     $this->data['customer_groups'] = Customergroups::all()->toArray();
     if (\SiteHelpers::is_customer()) {
         $this->data['hidethis'] = ' takeout';
     } else {
         $this->data['hidethis'] = '';
     }
     $this->data['id'] = $id;
     return view('ycustomers.form', $this->data);
 }
开发者ID:sonoftheweb,项目名称:yallatracking_app,代码行数:28,代码来源:YcustomersController.php

示例2: array

                            </div>
                            <div class="form-group hidethis " style="display:none;">
                                <label for="ipt" class=" control-label ">
                                    {!! SiteHelpers::activeLang('User Group', (isset($fields['group_id']['language'])? $fields['group_id']['language'] : array())) !!}
                                </label>
                                {!! Form::text('group_id', $row['group_id'],array('class'=>'form-control', 'placeholder'=>'',   )) !!}
                            </div>
                            <div class="form-group {!! $hidethis !!}" >
                                <label for="ipt" class=" control-label ">
                                    {!! SiteHelpers::activeLang('Account Type', (isset($fields['account_type']['language'])? $fields['account_type']['language'] : array())) !!}
                                    <span class="asterix"> * </span>  </label>
                                <select name='account_type' rows='5' id='account_type' class='select2 ' required  ></select>
                            </div>

                            <?php 
if (SiteHelpers::is_customer()) {
    echo Form::hidden('customer_group', $row['customer_group'], ['id' => 'customer_group']);
} else {
    ?>
                            <div class="form-group  ">
                                <label for="ipt" class=" control-label ">
                                    {!! SiteHelpers::activeLang('Customer Type', (isset($fields['customer_group']['language'])? $fields['customer_group']['language'] : array())) !!}
                                    <span class="asterix"> * </span>  </label>
                                <select name='customer_group' rows='5' id='customer_group' class='select2 ' required  ></select>
                            </div><?php 
}
?>


                            <div class="form-group {!! $hidethis !!}" >
                                <label for="ipt" class=" control-label ">
开发者ID:sonoftheweb,项目名称:yallatracking_app,代码行数:31,代码来源:form.blade.php


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