当前位置: 首页>>代码示例>>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;未经允许,请勿转载。