Lines Matching full:manager
4 * Yadis service manager to be used during yadis-driven authentication
285 * The Yadis service manager which stores state in a session and
310 * Intialize a new yadis service manager.
451 $manager = $this->getManager();
452 if (!$manager || (!$manager->services)) {
461 $manager = $this->createManager($services, $yadis_url);
464 if ($manager) {
466 $service = $manager->nextService();
468 serialize($loader->toSession($manager)));
478 * most-recently-attempted service from the manager, if one
481 * @param bool $force True if the manager should be deleted regardless
482 * of whether it's a manager for $this->url.
487 $manager = $this->getManager($force);
488 if ($manager) {
489 $service = $manager->current();
510 * @param bool $force True if the manager should be returned regardless
511 * of whether it's a manager for $this->url.
520 /** @var Auth_Yadis_Manager $manager */
521 $manager = null;
525 $manager = $loader->fromSession(unserialize($manager_str));
528 if ($manager && ($manager->forURL($this->url) || $force)) {
529 return $manager;
549 $manager = new Auth_Yadis_Manager($this->url, $yadis_url,
552 serialize($loader->toSession($manager)));
553 return $manager;
561 * @param bool $force True if the manager should be deleted regardless
562 * of whether it's a manager for $this->url.