/** * Build a social profile object. * * <code> * $options = array( * "social_platform" => "socialcommunity", * "user_id" => 1 * ); * * $profileBuilder = new Prism\Integration\Profile\Builder($options); * $profileBuilder->build(); * * $profile = $profileBuilder->getProfile(); * </code> */ public function build() { $type = ArrayHelper::getValue($this->config, 'social_platform'); $userId = ArrayHelper::getValue($this->config, 'user_id'); switch ($type) { case 'socialcommunity': jimport('Socialcommunity.init'); /** @var $params Registry */ $params = \JComponentHelper::getParams('com_socialcommunity'); $filesystemHelper = new Helper($params); $url = $filesystemHelper->getMediaFolderUri(); $profile = new Socialcommunity(\JFactory::getDbo()); $profile->load(array('user_id' => $userId)); $profile->setMediaUrl($url); break; case 'gravatar': $profile = new Gravatar(\JFactory::getDbo()); $profile->load($userId); break; case 'kunena': $profile = new Kunena(\JFactory::getDbo()); $profile->load($userId); break; case 'jomsocial': // Register JomSocial Router if (!class_exists('CRoute')) { \JLoader::register('CRoute', JPATH_SITE . '/components/com_community/libraries/core.php'); } $profile = new JomSocial(\JFactory::getDbo()); $profile->load($userId); // Load language file. $lang = \JFactory::getLanguage(); $lang->load('com_community.country', JPATH_BASE); break; case 'easysocial': $profile = new EasySocial(\JFactory::getDbo()); $profile->load($userId); break; case 'easyprofile': $profile = new EasyProfile(\JFactory::getDbo()); $profile->load($userId); break; case 'communitybuilder': $profile = new CommunityBuilder(\JFactory::getDbo()); $profile->load($userId); break; default: $profile = null; break; } $this->profile = $profile; }
/** * Build a social profile object. * * <code> * $options = array( * "social_platform" => "socialcommunity", * "user_id" => 1 * ); * * $profileBuilder = new Prism\Integration\Profile\Builder($options); * $profileBuilder->build(); * * $profile = $profileBuilder->getProfile(); * </code> */ public function build() { $type = ArrayHelper::getValue($this->config, 'social_platform'); $userId = ArrayHelper::getValue($this->config, 'user_id'); switch ($type) { case 'socialcommunity': jimport('socialcommunity.init'); /** @var $params Registry */ $params = \JComponentHelper::getParams('com_socialcommunity'); $path = $params->get('images_directory', '/images/profiles'); $profile = new SocialCommunity(\JFactory::getDbo()); $profile->load($userId); $profile->setPath($path); break; case 'gravatar': $profile = new Gravatar(\JFactory::getDbo()); $profile->load($userId); break; case 'kunena': $profile = new Kunena(\JFactory::getDbo()); $profile->load($userId); break; case 'jomsocial': // Register JomSocial Router if (!class_exists('CRoute')) { \JLoader::register('CRoute', JPATH_SITE . '/components/com_community/libraries/core.php'); } $profile = new JomSocial(\JFactory::getDbo()); $profile->load($userId); break; case 'easysocial': $profile = new EasySocial(\JFactory::getDbo()); $profile->load($userId); break; case 'easyprofile': $profile = new EasyProfile(\JFactory::getDbo()); $profile->load($userId); break; case 'communitybuilder': $profile = new CommunityBuilder(\JFactory::getDbo()); $profile->load($userId); break; default: $profile = null; break; } $this->profile = $profile; }
/** * Build a social profile object. * * <code> * $options = array( * "social_platform" => "socialcommunity", * "user_id" => 1 * ); * * $profileBuilder = new Prism\Integration\Profile\Builder($options); * $profileBuilder->build(); * * $profile = $profileBuilder->getProfile(); * </code> */ public function build() { $type = ArrayHelper::getValue($this->config, "social_platform"); $userId = ArrayHelper::getValue($this->config, "user_id"); switch ($type) { case "socialcommunity": jimport("socialcommunity.init"); /** @var $params Registry */ $params = \JComponentHelper::getParams("com_socialcommunity"); $path = $params->get("images_directory", "/images/profiles"); $profile = new SocialCommunity(\JFactory::getDbo()); $profile->load($userId); $profile->setPath($path); break; case "gravatar": $profile = new Gravatar(\JFactory::getDbo()); $profile->load($userId); break; case "kunena": $profile = new Kunena(\JFactory::getDbo()); $profile->load($userId); break; case "jomsocial": // Register JomSocial Router if (!class_exists("CRoute")) { \JLoader::register("CRoute", JPATH_SITE . "/components/com_community/libraries/core.php"); } $profile = new JomSocial(\JFactory::getDbo()); $profile->load($userId); break; case "easysocial": $profile = new EasySocial(\JFactory::getDbo()); $profile->load($userId); break; case "easyprofile": $profile = new EasyProfile(\JFactory::getDbo()); $profile->load($userId); break; case "communitybuilder": $profile = new CommunityBuilder(\JFactory::getDbo()); $profile->load($userId); break; default: $profile = null; break; } $this->profile = $profile; }