Welcome Guest, Not a member yet? Register   Sign In
Is it possible to make controllers private?
#22

[eluser]Nonox[/eluser]
Thanks for the response.

For clarification, I'm using cron job bootstrapper too, and I'm running the script in this way:
Code:
shell$ /opt/lampp/bin/php cron.php --run=/script/test/run/uri_secret
In the controller I have a function that check the access, I call the function in this way:
Code:
$this->_checkAccessProcess(php_sapi_name(),$uri_secret);
Code:
function _checkAccessProcess($request=null,$uri_secret=null)
{
    if ( strtolower($request) != "cli" || $clave != $CI->config->item("secret_word") )
    {
        show_404();
    }
    else
    {
        return true;
    }
}
If somebody have a better way please tell me.

Thanks.
Nonox


Messages In This Thread
Is it possible to make controllers private? - by El Forum - 09-28-2009, 05:59 AM
Is it possible to make controllers private? - by El Forum - 09-28-2009, 06:45 AM
Is it possible to make controllers private? - by El Forum - 09-28-2009, 10:55 AM
Is it possible to make controllers private? - by El Forum - 09-28-2009, 03:05 PM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 07:26 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 07:56 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 09:10 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 09:51 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 10:48 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 11:26 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 11:58 AM
Is it possible to make controllers private? - by El Forum - 09-29-2009, 02:41 PM
Is it possible to make controllers private? - by El Forum - 09-30-2009, 02:43 AM
Is it possible to make controllers private? - by El Forum - 09-30-2009, 04:39 AM
Is it possible to make controllers private? - by El Forum - 09-30-2009, 10:58 AM
Is it possible to make controllers private? - by El Forum - 09-30-2009, 11:16 AM
Is it possible to make controllers private? - by El Forum - 09-30-2009, 01:45 PM
Is it possible to make controllers private? - by El Forum - 10-01-2009, 12:00 AM
Is it possible to make controllers private? - by El Forum - 10-01-2009, 12:31 PM
Is it possible to make controllers private? - by El Forum - 10-03-2009, 08:53 AM
Is it possible to make controllers private? - by El Forum - 10-03-2009, 02:40 PM
Is it possible to make controllers private? - by El Forum - 10-03-2009, 05:56 PM



Theme © iAndrew 2016 - Forum software by © MyBB