Skip to content

Instantly share code, notes, and snippets.

@Demeter
Forked from alexedwards/intro
Created October 14, 2011 18:35
Show Gist options
  • Save Demeter/1287923 to your computer and use it in GitHub Desktop.
Save Demeter/1287923 to your computer and use it in GitHub Desktop.
connecting
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