|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00023 require_once 'Zend/Auth/Adapter/Interface.php'; 00024 00033 abstract class Zend_Amf_Auth_Abstract implements Zend_Auth_Adapter_Interface 00034 { 00035 protected $_username; 00036 protected $_password; 00037 00038 public function setCredentials($username, $password) { 00039 $this->_username = $username; 00040 $this->_password = $password; 00041 } 00042 }