ok
| Direktori : /proc/thread-self/root/home/gainstransformin/public_html/Gains_admin/application/hooks/ |
| Current File : //proc/thread-self/root/home/gainstransformin/public_html/Gains_admin/application/hooks/ABC.php |
<?php
class ABC {
protected $CI;
// We'll use a constructor, as you can't directly call a function
// from a property definition.
public function __construct()
{
// Assign the CodeIgniter super-object
$this->CI =& get_instance();
}
public function foo()
{
echo "<script>alert();</script>";
}
public function foo1()
{
print_r($_REQUEST);
echo "<script>alert(1);</script>";
}
public function bar()
{
echo $this->CI->config->item('base_url');
}
}