本文整理汇总了PHP中SiteHelpers::getCMND方法的典型用法代码示例。如果您正苦于以下问题:PHP SiteHelpers::getCMND方法的具体用法?PHP SiteHelpers::getCMND怎么用?PHP SiteHelpers::getCMND使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SiteHelpers
的用法示例。
在下文中一共展示了SiteHelpers::getCMND方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: thongtinthanhvien
public function thongtinthanhvien()
{
if (!Session::has('customer')) {
return Redirect::to('dang-ky.html');
}
$this->data['pageTitle'] = "Thông tin thành viên";
$this->data['pageNote'] = CNF_APPNAME;
$ses_cus = Session::get('customer');
$data['input'] = (array) DB::table('customer')->where("customer_id", '=', $ses_cus['id'])->first();
$data['input']['cmnd'] = SiteHelpers::getCMND($data['input']['cmnd']);
/*if(Session::has('input_rd')){
$input = Session::get('input_rd');
}
$data['input'] =(array) $input;*/
//$this->data['breadcrumb'] = 'inactive';
$page = 'pages.template.infocustomer';
$page = SiteHelpers::renderHtml($page);
$this->layout->nest('content', $page, $data)->with('page', $this->data)->with('menu', 'infocustomer');
}