當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CI::auth方法代碼示例

本文整理匯總了PHP中CI::auth方法的典型用法代碼示例。如果您正苦於以下問題:PHP CI::auth方法的具體用法?PHP CI::auth怎麽用?PHP CI::auth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CI的用法示例。


在下文中一共展示了CI::auth方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::lang()->load('categories');
     \CI::load()->model('Categories');
 }
開發者ID:buzkall,項目名稱:GoCart3,代碼行數:7,代碼來源:AdminCategories.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model('Locations');
     \CI::lang()->load('locations');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:7,代碼來源:AdminLocations.php

示例3: logout

 public function logout()
 {
     \CI::auth()->logout();
     //when someone logs out, automatically redirect them to the login page.
     \CI::session()->set_flashdata('message', lang('message_logged_out'));
     redirect('admin/login');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:7,代碼來源:AdminLogin.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model(['Categories', 'Products', 'Pages']);
     \CI::lang()->load('sitemap');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:7,代碼來源:AdminSitemap.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model(['Messages', 'Pages', 'Locations']);
     \CI::lang()->load('settings');
     \CI::load()->helper('inflector');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:8,代碼來源:AdminSettings.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model('Coupons');
     \CI::load()->model('products');
     \CI::lang()->load('coupons');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:8,代碼來源:AdminCoupons.php

示例7: __construct

 function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model(['Orders', 'Search']);
     \CI::load()->helper(array('formatting'));
     \CI::lang()->load('reports');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:8,代碼來源:AdminReports.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::load()->model(['Products', 'Categories']);
     \CI::load()->helper('form');
     \CI::lang()->load('products');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:8,代碼來源:AdminMaterials.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     if (\CI::auth()->check_access('Orders')) {
         redirect(config_item('admin_folder') . '/orders');
     }
     \CI::load()->model('Orders');
     \CI::load()->model('Customers');
     \CI::load()->helper('date');
     \CI::lang()->load('dashboard');
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:11,代碼來源:AdminDashboard.php

示例10: index

 public function index()
 {
     \CI::auth()->check_access('Admin', true);
     \CI::lang()->load('settings');
     \CI::load()->helper('inflector');
     global $shippingModules;
     $data['shipping_modules'] = $shippingModules;
     $data['enabled_modules'] = \CI::Settings()->get_settings('shipping_modules');
     $data['page_title'] = lang('common_shipping_modules');
     $this->view('shipping_index', $data);
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:11,代碼來源:AdminShipping.php

示例11: index

 public function index()
 {
     \CI::auth()->check_access('Admin', true);
     \CI::lang()->load('settings');
     \CI::load()->helper('inflector');
     global $paymentModules;
     //Payment Information
     $payment_order = \CI::Settings()->get_settings('payment_order');
     $data['payment_modules'] = $paymentModules;
     $data['enabled_modules'] = \CI::Settings()->get_settings('payment_modules');
     $data['page_title'] = lang('common_payment_modules');
     $this->view('payment_index', $data);
 }
開發者ID:haouach,項目名稱:GoCart3,代碼行數:13,代碼來源:AdminPayments.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::auth()->check_access('Admin', true);
     \CI::lang()->load('cod');
 }
開發者ID:thijmenvenus,項目名稱:GoCart3,代碼行數:6,代碼來源:AdminCod.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     \CI::lang()->load('admin_common');
     \CI::auth()->isLoggedIn(uri_string());
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:6,代碼來源:AdminController.php

示例14: site_url

                                <li><a href="<?php 
        echo site_url('admin/gift-cards');
        ?>
"><?php 
        echo lang('common_gift_cards');
        ?>
</a></li>
                            <?php 
    }
    ?>
                        </ul>
                    </li>

                    <?php 
    // Restrict access to Admins only
    if (CI::auth()->check_access('Admin')) {
        ?>
                    <li class="dropdown">
                        <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><?php 
        echo lang('common_catalog');
        ?>
 <span class="caret"></span></a>
                        <ul class="dropdown-menu" role="menu">
                            <li><a href="<?php 
        echo site_url('admin/categories');
        ?>
"><?php 
        echo lang('common_categories');
        ?>
</a></li>
                            <li><a href="<?php 
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:31,代碼來源:header.php

示例15: edit_status

 public function edit_status()
 {
     \CI::auth()->isLoggedIn();
     $order['id'] = \CI::input()->post('id');
     $order['status'] = \CI::input()->post('status');
     \CI::Orders()->saveOrder($order);
     echo url_title($order['status']);
 }
開發者ID:lekhangyahoo,項目名稱:gonline,代碼行數:8,代碼來源:AdminOrders.php


注:本文中的CI::auth方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。