Guest User

Untitled

a guest
May 9th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.84 KB | None | 0 0
  1.     $output = array();
  2.   if (!empty(variable_get('worx_social_review_google_link', ''))){
  3.     $output['@google'] = '[google] - Google Review Link';
  4.   }
  5.   if (!empty(variable_get('worx_social_review_bing_link', ''))){
  6.     $output['bing'] = '[bing] - Bing Review Link';
  7.   }
  8.   if (!empty(variable_get('worx_social_review_yahoo_link', ''))){
  9.     $output['yahoo'] = '[yahoo] - Yahoo Review Link';
  10.   }
  11.   if (!empty(variable_get('worx_social_review_yp_link', ''))){
  12.     $output['yp'] = '[yp] - Yellow Pages Review Link';
  13.   }
  14.   if (!empty(variable_get('worx_social_review_foursquare_link', ''))){
  15.     $output['foursqaure'] = '[foursqaure] - Foursquare Review Link';
  16.   }
  17.   $form['tokens']['token_list'] = array(
  18.     '#type' => 'item',
  19.     '#markup' => t('<p>@google<br />@yahoo<br />@bing<br />@yp<br />@foursquare<br /></p>', $output ),
  20.   );
Advertisement
Add Comment
Please, Sign In to add comment