Welcome Guest, Not a member yet? Register   Sign In
authenticate problem
#1
Sad 

Hello,

My old coder added in all my funtions this code in start. 

admin_authenticate();


for exmple :
function enable()
{
admin_authenticate();

$this->db->where("category_id", $this->uri->segment(4));
$this->db->update("categories", array("category_enabled" => $this->uri->segment(5)));

$msg = $this->uri->segment(5)? "enabled" : "disabled";

redirect("admins/categories/listing/".$msg);
}




My question is where admin_authenticate();  ??? i wana edit this for redirect page ? please help i m new.
Reply
#2

The code structure indicates that is is a helper function. You can check some files in /application/helpers/ folder. Or you could just search for a string like "function admin_authenticate()" in all the files, that should generally show you where that specific function is defined.
Reply
#3

Use your editor to find that function in all of your files. Or you can install another editor (Netbeans for php), open your one file using netbeans editor then press "ctrl"+click the function "admin_authenticate()" it will redirect you to the page where it is located.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB