From 68c01cda10ef49b05fffb6e323fa2d34ba5dd2f4 Mon Sep 17 00:00:00 2001 From: cweiske Date: Fri, 23 Oct 2009 17:13:16 +0000 Subject: rename ServiceFactory::getServiceInstance() to get() - much easier to write git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@396 b3834d28-1941-0410-a4f8-b48e95affb8f --- www/ajax/getlinkedtags.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'www/ajax/getlinkedtags.php') diff --git a/www/ajax/getlinkedtags.php b/www/ajax/getlinkedtags.php index 2a93a3d..9415f87 100644 --- a/www/ajax/getlinkedtags.php +++ b/www/ajax/getlinkedtags.php @@ -24,9 +24,9 @@ require_once '../../src/SemanticScuttle/header.php'; /* Service creation: only useful services are created */ -$b2tservice =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark2Tag'); -$bookmarkservice =SemanticScuttle_Service_Factory::getServiceInstance('Tag'); -$tagstatservice =SemanticScuttle_Service_Factory::getServiceInstance('TagStat'); +$b2tservice =SemanticScuttle_Service_Factory::get('Bookmark2Tag'); +$bookmarkservice =SemanticScuttle_Service_Factory::get('Tag'); +$tagstatservice =SemanticScuttle_Service_Factory::get('TagStat'); /* Managing all possible inputs */ isset($_GET['tag']) ? define('GET_TAG', $_GET['tag']): define('GET_TAG', ''); @@ -36,7 +36,7 @@ isset($_GET['uId']) ? define('GET_UID', $_GET['uId']): define('GET_UID', ''); function displayTag($tag, $uId) { $uId = ($uId==0)?NULL:$uId; // if user is nobody, NULL allows to look for every public tags - $tag2tagservice =SemanticScuttle_Service_Factory::getServiceInstance('Tag2Tag'); + $tag2tagservice =SemanticScuttle_Service_Factory::get('Tag2Tag'); $output = '{ id:'.rand().', name:\''.$tag.'\''; $linkedTags = $tag2tagservice->getLinkedTags($tag, '>', $uId); -- cgit v1.2.3