I'm using Jaisen Mathai twitter library and worked fine in PHP without code-igniter framework. now, I'm upgrading existing website to codeigniter 2.0 and unable to work with twitter.
Here is how I'm trying to do:
copied EpiCurl.php, EpiOAuth.php,EpiTwitter.php into library folder
<? php if(!defined('BASEPATH')) exit('No direct script access allowed');
//to make it compatible with code-igniter (as per naming conventions of codeigniter).
In a controller I'm trying to load these libraries:
$this->load->library('EpiCurl'); // here the code excution breaks
$this->load->library('EpiOAuth');
$this->load->library('EpiTwitter');
now when i read class(EpiCurl), i came to know that it can't be instantiated using new keyword.
When I debugged my application I found that loader is trying to instantiate library using new keyword and after that I'm getting exception from EpiCurl.php
This class cannot be instantiated by the new keyword.
You must instantiate it using: $obj = EpiCurl::getInstance();
So, anybody there to help me out on how to load library class using getInstance() method instead of new keyword.