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


PHP remove_ssl函數代碼示例

本文整理匯總了PHP中remove_ssl函數的典型用法代碼示例。如果您正苦於以下問題:PHP remove_ssl函數的具體用法?PHP remove_ssl怎麽用?PHP remove_ssl使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->lang->load('theme');
 }
開發者ID:Joncg,項目名稱:eelly_cps_fx,代碼行數:7,代碼來源:theme.php

示例2: __construct

 function __construct()
 {
     parent::__construct();
     //make sure we're not always behind ssl
     remove_ssl();
     $this->load->model('Customer_model');
 }
開發者ID:FAVHYAN,項目名稱:a3workout,代碼行數:7,代碼來源:cart.php

示例3: __construct

 function __construct()
 {
     parent::__construct();
     // Load in the admin helper functions if the current user is an administrator
     if ($this->secure->group_types(array(ADMINISTRATOR))->is_auth()) {
         $this->load->helper('admin_helper');
     }
     $this->cms_parameters = array();
     $this->cms_base_route = '';
     // Check if to force ssl on controller
     if (in_uri($this->config->item('ssl_pages'))) {
         force_ssl();
     } else {
         remove_ssl();
     }
     // Create Dynamic Page Title
     if (!($title = str_replace('-', ' ', $this->uri->segment(1)))) {
         $title = 'Home';
     }
     if ($segment2 = str_replace('-', ' ', $this->uri->segment(2))) {
         $title = $segment2 . " - " . $title;
     }
     $this->template->set_meta_title(ucwords($title) . " | " . $this->settings->site_name);
     // Set Group
     if ($this->session->userdata('user_session')) {
         $this->group_id = $this->session->userdata('user_session')->group_id;
         $this->Group_session = $this->session->userdata('group_session');
     }
 }
開發者ID:mamtasingh87,項目名稱:bytecode,代碼行數:29,代碼來源:MY_Controller.php

示例4: __construct

 function __construct()
 {
     parent::__construct();
     //        echo 'test';
     //make sure we're not always behind ssl
     remove_ssl();
 }
開發者ID:devarj,項目名稱:design,代碼行數:7,代碼來源:searchwidget.php

示例5: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->load->model('Newsletter_model');
     $this->load->helper(array('formatting', 'utility'));
 }
開發者ID:jonyhandoko,項目名稱:khayana,代碼行數:7,代碼來源:newsletter.php

示例6: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin,Employee', true);
     $this->load->model('Page_model');
     $this->lang->load('page');
 }
開發者ID:santanumajumdar,項目名稱:carpool,代碼行數:8,代碼來源:pages.php

示例7: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->load->model('Order_model');
     $this->load->helper(array('formatting'));
     $this->lang->load('order');
 }
開發者ID:devarj,項目名稱:design,代碼行數:8,代碼來源:invoice.php

示例8: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->lang->load('category');
     $this->load->model('Category_model');
 }
開發者ID:FAVHYAN,項目名稱:a3workout,代碼行數:8,代碼來源:categories.php

示例9: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->load->model('Settings_model');
     $this->load->model('Messages_model');
     $this->lang->load('settings');
 }
開發者ID:santanumajumdar,項目名稱:carpool,代碼行數:8,代碼來源:settings.php

示例10: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->load->model('Batch_model');
     $this->load->helper('date');
 }
開發者ID:jonyhandoko,項目名稱:khayana,代碼行數:8,代碼來源:batch.php

示例11: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->load->model('Customer_model');
     $this->load->model(array('Customer_model', 'Travel_model', 'Trip_model', 'Vehicles_model', 'subscribe_model', 'enquiry_model', 'testimonial_model', 'category_model'));
     $this->load->helper('date');
     $this->lang->load('dashboard');
 }
開發者ID:santanumajumdar,項目名稱:carpool,代碼行數:9,代碼來源:dashboard.php

示例12: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->lang->load('image');
     $this->load->model(array('messages_model'));
     $this->load->helper('date');
 }
開發者ID:dealsign,項目名稱:public_html,代碼行數:9,代碼來源:message.php

示例13: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->lang->load('lookbooks');
     $this->load->model('Lookbook_model');
     $this->load->helper('date');
 }
開發者ID:jonyhandoko,項目名稱:khayana,代碼行數:9,代碼來源:lookbooks.php

示例14: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->auth->check_access('Admin', true);
     $this->load->model('Settings_model');
     $this->load->model('Messages_model');
     $this->lang->load('settings');
 }
開發者ID:Joncg,項目名稱:eelly_cps_fx,代碼行數:9,代碼來源:settings.php

示例15: __construct

 function __construct()
 {
     parent::__construct();
     remove_ssl();
     $this->load->model('Merchant_model');
     $this->load->helper('date');
     $this->lang->load('dashboard');
     $this->admin = $this->auth->logged_data();
 }
開發者ID:dealsign,項目名稱:public_html,代碼行數:9,代碼來源:dashboard.php


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