Lines Matching refs:directory
46 * @param string $directory This is the directory to put the store
49 function Auth_OpenID_FileStore($directory) argument
51 if (!Auth_OpenID::ensureDir($directory)) {
53 . $directory, E_USER_ERROR);
55 $directory = realpath($directory);
57 $this->directory = $directory;
60 $this->nonce_dir = $directory . DIRECTORY_SEPARATOR . 'nonces';
62 $this->association_dir = $directory . DIRECTORY_SEPARATOR .
67 $this->temp_dir = $directory . DIRECTORY_SEPARATOR . 'temp';
73 $directory, E_USER_ERROR);
79 Auth_OpenID_FileStore::_rmtree($this->directory);