Guest User

Untitled

a guest
May 3rd, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. protected $authentication = 'none'; // Can be 'none', 'basic' or 'digest'
  2. protected $username = FALSE;
  3. protected $password = FALSE;
  4. protected $key = FALSE;
  5.  
  6.  
  7. protected $format = 'html';
  8. protected $supported_formats = array(
  9. 'html' => 'text/html',
  10. 'php' => 'text/plain',
  11. 'json' => 'application/json',
  12. 'xml' => 'application/xml'
  13. );
  14.  
  15.  
  16. function __construct()
  17. {
  18. parent::Model();
  19. }
Add Comment
Please, Sign In to add comment