本文整理汇总了PHP中Public_Controller类的典型用法代码示例。如果您正苦于以下问题:PHP Public_Controller类的具体用法?PHP Public_Controller怎么用?PHP Public_Controller使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Public_Controller类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructor method
*
* @access public
* @return void
*/
public function __construct()
{
// Call the parent's constructor method
parent::Public_Controller();
// Load the required classes
$this->load->model('users_m');
$this->load->model('profile_m');
$this->load->helper('user');
$this->load->helper('date');
$this->lang->load('user');
$this->lang->load('profile');
$this->load->library('form_validation');
// Validation rules - git is really pissing me off right now
$this->validation_rules = array(array('field' => 'display_name', 'label' => lang('profile_display'), 'rules' => 'required|trim|alphanumeric'), array('field' => 'gender', 'label' => lang('profile_gender'), 'rules' => 'trim|max_length[1]'), array('field' => 'dob_day', 'label' => lang('profile_dob_day'), 'rules' => 'trim|numeric|required'), array('field' => 'dob_month', 'label' => lang('profile_dob_month'), 'rules' => 'trim|numeric|required'), array('field' => 'dob_year', 'label' => lang('profile_dob_year'), 'rules' => 'trim|numeric|required'), array('field' => 'bio', 'label' => lang('profile_bio'), 'rules' => 'trim|max_length[1000]'), array('field' => 'phone', 'label' => lang('profile_phone'), 'rules' => 'trim|alpha_numeric|max_length[20]'), array('field' => 'mobile', 'label' => lang('profile_mobile'), 'rules' => 'trim|alpha_numeric|max_length[20]'), array('field' => 'address_line1', 'label' => lang('profile_address_line1'), 'rules' => 'trim'), array('field' => 'address_line2', 'label' => lang('profile_address_line2'), 'rules' => 'trim'), array('field' => 'address_line3', 'label' => lang('profile_address_line3'), 'rules' => 'trim'), array('field' => 'postcode', 'label' => lang('profile_postcode'), 'rules' => 'trim|max_length[20]'), array('field' => 'msn_handle', 'label' => lang('profile_msn_handle'), 'rules' => 'trim|valid_email'), array('field' => 'aim_handle', 'label' => lang('profile_aim_handle'), 'rules' => 'trim|alpha_numeric'), array('field' => 'yim_handle', 'label' => lang('profile_yim_handle'), 'rules' => 'trim|alpha_numeric'), array('field' => 'gtalk_handle', 'label' => lang('profile_gtalk_handle'), 'rules' => 'trim|valid_email'), array('field' => 'gravatar', 'label' => lang('profile_gravatar'), 'rules' => 'trim|valid_email'));
// Set the validation rules
$this->form_validation->set_rules($this->validation_rules);
// If profiles are not enabled, pretend they don't exist
if (!$this->settings->item('enable_profiles')) {
show_404();
}
// Get the user ID, if it exists
if ($user = $this->ion_auth->get_user()) {
$this->user_id = $user->id;
}
// The user is not logged in, send them to login page
if (!$this->ion_auth->logged_in()) {
redirect('users/login');
}
}
开发者ID:Tapha,项目名称:pyrocms,代码行数:35,代码来源:profile.php
示例2: __construct
function __construct()
{
parent::Public_Controller();
$this->load->library('validation');
$this->load->model('comments_m');
$this->lang->load('comments');
}
开发者ID:netfreak,项目名称:pyrocms,代码行数:7,代码来源:comments.php
示例3: __construct
/**
* Constructor method
* @access public
* @return void
*/
public function __construct()
{
parent::Public_Controller();
$this->config->load('paypal_constants');
$this->load->model('orders_m');
$this->load->model('checkout_m');
}
开发者ID:rat4m3n,项目名称:PyroCart,代码行数:12,代码来源:checkout.php
示例4: __construct
function __construct()
{
parent::Public_Controller();
if (!$this->data->user === FALSE) {
header('Location: ' . $this->config->item('base_url') . 'admin');
}
}
开发者ID:google-code-backups,项目名称:lifepress,代码行数:7,代码来源:login.php
示例5: auth
/**
* Constructor
*/
function auth()
{
parent::Public_Controller();
// Load the Auth_form_processing class
$this->load->library('auth_form_processing');
log_message('debug', 'BackendPro : Auth class loaded');
}
开发者ID:hackjatra,项目名称:twischedule,代码行数:10,代码来源:auth.php
示例6: __construct
public function __construct()
{
parent::Public_Controller();
$this->config->load('files');
$this->_path = FCPATH . $this->config->item('files_folder') . DIRECTORY_SEPARATOR;
}
开发者ID:JamieLomas,项目名称:pyrocms,代码行数:7,代码来源:files.php
示例7: __construct
function __construct()
{
parent::Public_Controller();
$this->load->model('news_m');
$this->load->helper('xml');
$this->load->helper('date');
}
开发者ID:bema2004sw,项目名称:pyrocms,代码行数:7,代码来源:rss.php
示例8: __construct
function __construct()
{
parent::Public_Controller();
$this->lang->load('contact');
$this->subjects = array('support' => lang('subject_support'), 'sales' => lang('subject_sales'), 'payments' => lang('subject_payments'), 'business' => lang('subject_business'), 'feedback' => lang('subject_feedback'), 'other' => lang('subject_other'));
$this->rules = array(array('field' => 'contact_name', 'label' => lang('contact_name_label'), 'rules' => 'required|trim|max_length[80]'), array('field' => 'contact_email', 'label' => lang('contact_email_label'), 'rules' => 'required|trim|valid_email|max_length[80]'), array('field' => 'company_name', 'label' => lang('contact_company_name_label'), 'rules' => 'trim|max_length[80]'), array('field' => 'subject', 'label' => lang('contact_subject_label'), 'rules' => 'required|trim'), array('field' => 'message', 'label' => lang('contact_message_label'), 'rules' => 'required'));
}
开发者ID:8496tar,项目名称:pyrocms,代码行数:7,代码来源:contact.php
示例9: __construct
function __construct()
{
parent::Public_Controller();
$this->load->library('user_lib');
$this->load->model('users_m');
$this->load->helper('user');
$this->lang->load('user');
}
开发者ID:netfreak,项目名称:pyrocms,代码行数:8,代码来源:users.php
示例10: __construct
public function __construct()
{
parent::__construct();
//Load lang
$this->lang->load('galleries/galleries');
$this->load->model('galleries/galleries_m');
}
开发者ID:jacksun101,项目名称:PyroAddons,代码行数:7,代码来源:galleries.php
示例11: __construct
/**
* Every time this controller is called should:
*/
public function __construct()
{
parent::__construct();
$this->lang->load("home");
$this->config->load("tdesign");
$this->load->helper(array("currency", "tdesign"));
}
开发者ID:nockout,项目名称:tshpro,代码行数:10,代码来源:home.php
示例12:
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
//$this->load->library('security');
}
开发者ID:kidino,项目名称:kidinoci,代码行数:7,代码来源:Auth.php
示例13: __construct
public function __construct()
{
parent::__construct();
$this->config->load('files/files');
$this->load->library('files/files');
$this->_path = FCPATH . rtrim($this->config->item('files:path'), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
}
开发者ID:jacksun101,项目名称:PyroAddons,代码行数:7,代码来源:show.php
示例14:
function __construct()
{
parent::__construct();
$this->folder = "";
$this->module = $this->folder;
$this->page_active = "stats";
$this->http_ref = base_url() . $this->module;
$this->load->model("general_model");
$this->model = new general_model("wa_data");
$this->model_view = new general_model("v_wa_data");
$this->model_contact = new general_model("wa_contact");
$this->model_hukum_adat = new general_model("wa_hukum_adat");
$this->model_hayati = new general_model("wa_hayati");
$this->model_hak_atas_tanah = new general_model("wa_hak_atas_tanah");
$this->model_sejarah = new general_model("wa_sejarah");
$this->model_lembaga_adat = new general_model("wa_lembaga_adat");
$this->model_potensi_hayati = new general_model("wa_potensi_hayati");
//$this->load->model('ion_auth_model')
$this->load->libraries(array('ion_auth', 'form_validation', 'utils'));
$this->load->helpers(array('form', 'url', 'lookup', 'language'));
$this->lang->load('auth');
$this->user = (array) $this->ion_auth->user()->row();
$this->tbl_idx = "idx";
$this->admin_layout = "layout/main_layout";
}
开发者ID:TrinataBhayanaka,项目名称:damkar,代码行数:25,代码来源:stats.php
示例15: __construct
public function __construct()
{
parent::__construct();
$this->load->model('Post');
$this->load->model('Category');
$this->load->model('Tag');
}
开发者ID:csiber,项目名称:ci-blog,代码行数:7,代码来源:Posts.php
示例16: redirect
function __construct()
{
if (login_data('nursery') == "") {
redirect('home');
}
parent::__construct();
}
开发者ID:unisexx,项目名称:thaigcd2015,代码行数:7,代码来源:nurseries.php
示例17: __construct
/**
* The constructor
* @access public
* @return void
*/
public function __construct()
{
parent::__construct();
$this->data = new stdClass();
$this->lang->load('testimonials');
$this->load->driver('Streams');
}
开发者ID:jacksun101,项目名称:PyroAddons,代码行数:12,代码来源:testimonials.php
示例18:
function __construct()
{
parent::__construct();
$this->load->model(array('m_profiles', 'm_posts', 'm_projects', 'm_blogs', 'm_reviews', 'm_videos', 'm_accounts', 'm_comments', 'm_threads', 'm_banners', 'm_stats'));
$this->load->helper(array('pretty_date'));
$this->load->vars(array('active' => 'home'));
}
开发者ID:ndokceplok,项目名称:Huntdrop,代码行数:7,代码来源:main.php
示例19: redirect
function __construct()
{
parent::__construct();
$this->load->library("go_cart");
$this->load->helper('currency');
$this->lang->load(array("cart"));
$this->load->model(array("location_model"));
/*make sure the cart isnt empty*/
if ($this->go_cart->total_items() == 0) {
redirect('home');
}
/*is the user required to be logged in?*/
if (config_item('require_login')) {
$this->Customer_model->is_logged_in('checkout');
}
if (!config_item('allow_os_purchase') && config_item('inventory_enabled')) {
/*double check the inventory of each item before proceeding to checkout*/
$inventory_check = $this->go_cart->check_inventory();
if ($inventory_check) {
/*
OOPS we have an error. someone else has gotten the scoop on our customer and bought products out from under them!
we need to redirect them to the view cart page and let them know that the inventory is no longer there.
*/
$this->session->set_flashdata('error', $inventory_check);
redirect('cart/view_cart');
}
}
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
$this->load->library('form_validation');
}
开发者ID:nockout,项目名称:tshpro,代码行数:34,代码来源:checkout.php
示例20: __construct
public function __construct()
{
parent::__construct();
$this->load->library('facebook');
$this->load->library('gr_auth', IMS_DB_PREFIX . 'customer');
$this->load->model(['user_home_model', 'event_public/event_public_model', 'rating/rating_model']);
}
开发者ID:soarmorrow,项目名称:booking-demo,代码行数:7,代码来源:user_dashboard.php
注:本文中的Public_Controller类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论