Lines Matching refs:directory
41 protected $directory = ''; variable in Auth_OpenID_FileStore
53 * @param string $directory This is the directory to put the store
56 function __construct($directory) argument
58 if (!Auth_OpenID::ensureDir($directory)) {
60 . $directory, E_USER_ERROR);
62 $directory = realpath($directory);
64 $this->directory = $directory;
67 $this->nonce_dir = $directory . DIRECTORY_SEPARATOR . 'nonces';
69 $this->association_dir = $directory . DIRECTORY_SEPARATOR .
74 $this->temp_dir = $directory . DIRECTORY_SEPARATOR . 'temp';
80 $directory, E_USER_ERROR);
86 Auth_OpenID_FileStore::_rmtree($this->directory);