document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //add function common/twitter.php
  2.  
  3. function theme_infoo() {
  4.     $random_text = array("based on the Open Source <a href=\'user/dabr\'>@dabr</a>",
  5.                     "Upload photos to official Twitter <a href=\'upload Picture\'>[here]</a> ",
  6.                     "Auto convert text to Autotext",
  7.                     "cek Parner Link Client <a href=\'parner\'> [here]</a>",
  8.                     "Download is Personal Tweets in your Phone <a href=\'http://bit.ly/tuitmeJar\'>install</a>",
  9.                     "suport 140 + twtmore or kanvaso  <a href=\'settings\'> [here]</a>",
  10.                     "Download is Personal Twees in your Phone <a href=\'http://bit.ly/tuitmeJar\'>install</a>",
  11.                     "and conntac <a href=\'user/deniahmad\'>@deniahmad</a> in bug",
  12.                     "avatar your timeline disable your small bandwidth",
  13.                     "cek Parner Link Client <a href=\'parner\'> [here]</a>",
  14.                     "Download is Personal Tweets in your Phone <a href=\'http://bit.ly/tuitmeJar\'>install</a>");
  15.                    
  16.  
  17.     srand(time());
  18.     $sizeof = count($random_text);
  19.     $random = (rand()%$sizeof);
  20.     $out = \'<div class="pengumuman">\'.$random_text[$random].\'</div>\';
  21.         return $out;
  22.     }
  23.  
  24.  
  25. //In dabr, usually common/theme.php -> function theme_page()
  26. function theme_page($title, $content) {
  27.     $body = theme(\'menu_top\');
  28.     $body .= $content;
  29.     //this code
  30.     $body .= theme(\'infoo\');
  31.     $body .= theme(\'menu_bottom\');
  32.     $body .= theme(\'google_analytics\');
  33.  
  34. //
');