codeigniter
प्रमाणीकरण
खोज…
हर नियंत्रक के लिए आपका प्रामाणिक पुस्तकालय लोड हो रहा है
यहाँ पर अपने लाइब्रेरी फाइल्स को कोडाइन्गाइटर / एप्लीकेशन / लाइब्रेरियों / बनाने या बदलने के लिए जाएँ।
codeigniter / application / core पर जाएं और एक नया php फाइल बनाएं जिसका नाम MY_Controller.php है
अंदर MY_Controller.php
<?php
class MY_Controller extends CI_Controller{
public function __construct(){
parent::__construct();
$this->load->library('AuthLib'); // AuthLib is your library name
}
}
और फिर प्रत्येक नियंत्रक फ़ाइल पर आपको MY_Controller का विस्तार करना होगा।
एक नियंत्रक का उदाहरण; codeigniter / application / नियंत्रकों में जाएं और एक php फाइल बनाएं
<?php
class Profile extends MY_Controller{
public function __construct(){
parent::__construct();
if ($this->AuthLib->logged_in() === FALSE) { //if you wanna make this condition stament on every controller just write it to inside construct function in MY_Controller.php
redirect(base_url('/'));
}
}
}
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow