本文整理汇总了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);
}
示例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 ">