Created
March 26, 2010 18:09
-
-
Save alexedwards/345194 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected $authentication = 'none'; // Can be 'none', 'basic' or 'digest' | |
protected $username = FALSE; | |
protected $password = FALSE; | |
protected $key = FALSE; | |
protected $format = 'html'; | |
protected $supported_formats = array( | |
'html' => 'text/html', | |
'php' => 'text/plain', | |
'json' => 'application/json', | |
'xml' => 'application/xml' | |
); | |
function __construct() | |
{ | |
parent::Model(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment