/** * the singleton pattern * * @return Addressbook_Controller */ public static function getInstance() { if (self::$_instance === NULL) { self::$_instance = new Addressbook_Controller(); } return self::$_instance; }