Esempio n. 1
0
	public function shorten()
	{
		$link = JRequest::getVar( 'url', '' );

		if( $link != '' )
		{
			Komento::import( 'helper', 'social' );
			$shortenlink = KomentoSocialHelper::shortenUrl( $link );
			echo $shortenlink;
		}

		exit;
	}
Esempio n. 2
0
	function shortenLink()
	{
		$link = JRequest::getVar( 'url' );

		if( $link != '' )
		{
			Komento::import( 'helper', 'social' );
			$link = KomentoSocialHelper::shortenUrl( $link );
		}

		$ajax = Komento::getAjax();
		$ajax->success( $link );
		$ajax->send();
	}