Lines Matching full:manager
4 * Yadis service manager to be used during yadis-driven authentication
269 * The Yadis service manager which stores state in a session and
279 * Intialize a new yadis service manager.
410 $manager = $this->getManager();
411 if (!$manager || (!$manager->services)) {
418 $manager = $this->createManager($services, $yadis_url);
421 if ($manager) {
423 $service = $manager->nextService();
425 serialize($loader->toSession($manager)));
435 * most-recently-attempted service from the manager, if one
438 * @param $force True if the manager should be deleted regardless
439 * of whether it's a manager for $this->url.
443 $manager = $this->getManager($force);
444 if ($manager) {
445 $service = $manager->current();
466 * @param $force True if the manager should be returned regardless
467 * of whether it's a manager for $this->url.
475 $manager = null;
479 $manager = $loader->fromSession(unserialize($manager_str));
482 if ($manager && ($manager->forURL($this->url) || $force)) {
483 return $manager;
499 $manager = new Auth_Yadis_Manager($this->url, $yadis_url,
502 serialize($loader->toSession($manager)));
503 return $manager;
510 * @param $force True if the manager should be deleted regardless
511 * of whether it's a manager for $this->url.