In a controller, I have
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
function Home()
{
parent:GDN__construct();
}
function index()
{
$this->load->library('session');
$this->load->module_helper(FUEL_FOLDER,'fuel');
$data['blog_feed'] = simplepie('
http://fnpsblog.blogspot.com/feeds/posts/default?alt=rss');
$this->fuel->pages->render('home', $data);
}
}
and I get the error message:
A PHP Error was encountered
Severity: Error
Message: Call to undefined function simplepie()
Filename: controllers/Home.php
Line Number: 19
Any idea what I am missing? I have verified that simplepie_helper.php exists and is in the same directory as all of the other helpers. Other helpers are working, though I did not use them from a controller.
Thanks
Comments
Is there a list of which ones load automatically and which ones have to be explicitly loaded?
I put in the code to load it, and it cured it.
Thanks.