| Code: |
<?php
echo '<script type="text/javascript" language="javascript" src="http://widget.odiogo.com/odiogo_js.php?feed_id=Your_Feed_ID_Here"></script>';
?> |
| Code: |
| $story_link = '<a href="modules. php?name=News&file=article&sid=' . $sid . '">'; |
| Code: |
$audiotop = "<BEGIN>\n";
$audiotop .= "<script>\n";
$audiotop .= "showOdiogoReadNowButton (_odiogo_feed_id, '$title', 'modules. php?name=News&file=article&sid=$sid',\n";
$audiotop .= "290, 55);\n";
$audiotop .= "</script>\n";
$audiotop .= "<END>\n";
$audiotop .= "\n";
$audiobottom = "<BEGIN>\n";
$audiobottom .= "<script>\n";
$audiobottom .= "showInitialOdiogoReadNowFrame (_odiogo_feed_id, 'modules. php?name=News&file=article&sid=$sid', 290, 0);\n";
$audiobottom .= "</script>\n";
$audiobottom .= "<END>\n";
$hometext = $audiotop . $hometext . $audiobottom; |
| Code: |
if (empty($bodytext)) {
$bodytext = $hometext;
} else {
$bodytext = $hometext . '<br /><br />' . $bodytext;
} |
| Code: |
$audiotop = "<!-- BEGIN listen now odiogo.com #2 -->\n";
$audiotop .= "<script type=\"text/javascript\" language=\"javascript\">\n";
$audiotop .= "showOdiogoReadNowButton (_odiogo_feed_id, '$title', 'modules. php?name=News&file=article&sid=$sid',\n";
$audiotop .= "290, 55);\n";
$audiotop .= "</script>\n";
$audiotop .= "<!-- END listen now odiogo.com #2 -->\n";
$audiotop .= "\n";
$audiobottom = "<!-- BEGIN listen now odiogo.com #3 -->\n";
$audiobottom .= "<script type=\"text/javascript\" language=\"javascript\">\n";
$audiobottom .= "showInitialOdiogoReadNowFrame (_odiogo_feed_id, 'modules. php?name=News&file=article&sid=$sid', 290, 0);\n";
$audiobottom .= "</script>\n";
$audiobottom .= "<!-- END listen now odiogo.com #3 -->\n";
if(empty($bodytext)) {
$bodytext = $audiotop . $hometext . $audiobottom;
} else {
$bodytext = $audiotop . $hometext . $bodytext . $audiobottom;
}
|