El Forum
07-11-2008, 01:13 AM
[eluser]Aquillyne[/eluser]
This is the file "stylesheet.php", which is in the subfolder "utilities" in my "controllers" folder.
When I go to index.php/utilities/stylesheet/foo I get the error:
The "CSS" library is a custom library in my application's "libraries" folder. Its contents are:
So as you can see, I am trying to load a custom library which contains the function "select" - but although I get no error message for the loading of the library, calling this select method just doesn't work!
Please help! Thanks.
This is the file "stylesheet.php", which is in the subfolder "utilities" in my "controllers" folder.
Code:
<?php
class Stylesheet extends Controller
{
function Stylesheet()
{
parent::Controller();
}
function foo()
{
$this->load->library("CSS");
$this->CSS->select("body");
}
}
?>
When I go to index.php/utilities/stylesheet/foo I get the error:
Quote:Fatal error: Undefined property: Stylesheet::$CSS. Call to a member function select() on a non-object in C:\Server\Frameworks\CodeIgniter\application\controllers\utilities\stylesheet.php
The "CSS" library is a custom library in my application's "libraries" folder. Its contents are:
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class CSS {
function select($element)
{
}
}
?>
So as you can see, I am trying to load a custom library which contains the function "select" - but although I get no error message for the loading of the library, calling this select method just doesn't work!
Please help! Thanks.