--- a/includes/template.php Sat Oct 20 21:59:27 2007 -0400
+++ b/includes/template.php Sat Nov 03 07:40:54 2007 -0400
@@ -42,7 +42,7 @@
$this->plugin_blocks = Array();
$this->theme_loaded = false;
- $this->fading_button = '<div style="background-image: url('.scriptPath.'/images/about-powered-enano-hover.png); background-repeat: no-repeat; width: 88px; height: 31px; margin: 0 auto;">
+ $this->fading_button = '<div style="background-image: url('.scriptPath.'/images/about-powered-enano-hover.png); background-repeat: no-repeat; width: 88px; height: 31px; margin: 0 auto 5px auto;">
<a href="http://enanocms.org/" onclick="window.open(this.href); return false;"><img style="border-width: 0;" alt=" " src="'.scriptPath.'/images/about-powered-enano.png" onmouseover="domOpacity(this, 100, 0, 500);" onmouseout="domOpacity(this, 0, 100, 500);" /></a>
</div>';
@@ -135,6 +135,7 @@
{
global $db, $session, $paths, $template, $plugins; // Common objects
global $email;
+ global $lang;
dc_here("template: initializing all variables");
@@ -197,37 +198,38 @@
switch($paths->namespace) {
case "Article":
default:
- $ns = 'article';
+ $ns = $lang->get('onpage_lbl_page_article');
break;
case "Admin":
- $ns = 'administration page';
+ $ns = $lang->get('onpage_lbl_page_admin');
break;
case "System":
- $ns = 'system message';
+ $ns = $lang->get('onpage_lbl_page_system');
break;
case "File":
- $ns = 'uploaded file';
+ $ns = $lang->get('onpage_lbl_page_file');
break;
case "Help":
- $ns = 'documentation page';
+ $ns = $lang->get('onpage_lbl_page_help');
break;
case "User":
- $ns = 'user page';
+ $ns = $lang->get('onpage_lbl_page_user');
break;
case "Special":
- $ns = 'special page';
+ $ns = $lang->get('onpage_lbl_page_special');
break;
case "Template":
- $ns = 'template';
+ $ns = $lang->get('onpage_lbl_page_template');
break;
case "Project":
- $ns = 'project page';
+ $ns = $lang->get('onpage_lbl_page_project');
break;
case "Category":
- $ns = 'category';
+ $ns = $lang->get('onpage_lbl_page_category');
break;
}
$this->namespace_string = $ns;
+ unset($ns);
$code = $plugins->setHook('page_type_string_set');
foreach ( $code as $cmd )
{
@@ -284,14 +286,25 @@
$n = ( $session->get_permissions('mod_comments') ) ? (string)$nc : (string)$na;
if ( $session->get_permissions('mod_comments') && $nu > 0 )
{
- $n .= ' total/'.$nu.' unapp.';
+ $subst = array(
+ 'num_comments' => $nc,
+ 'num_unapp' => $nu
+ );
+ $btn_text = $lang->get('onpage_btn_discussion_unapp', $subst);
+ }
+ else
+ {
+ $subst = array(
+ 'num_comments' => $nc
+ );
+ $btn_text = $lang->get('onpage_btn_discussion', $subst);
}
$button->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxComments()); return false; }" title="View the comments that other users have posted about this page (alt-c)" accesskey="c"',
'PARENTFLAGS' => 'id="mdgToolbar_discussion"',
'HREF' => makeUrl($paths->page, 'do=comments', true),
- 'TEXT' => 'discussion ('.$n.')',
+ 'TEXT' => $btn_text,
));
$tb .= $button->run();
@@ -303,7 +316,7 @@
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxEditor()); return false; }" title="Edit the contents of this page (alt-e)" accesskey="e"',
'PARENTFLAGS' => 'id="mdgToolbar_edit"',
'HREF' => makeUrl($paths->page, 'do=edit', true),
- 'TEXT' => 'edit this page'
+ 'TEXT' => $lang->get('onpage_btn_edit')
));
$tb .= $button->run();
// View source button
@@ -314,7 +327,7 @@
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxViewSource()); return false; }" title="View the source code (wiki markup) that this page uses (alt-e)" accesskey="e"',
'PARENTFLAGS' => 'id="mdgToolbar_edit"',
'HREF' => makeUrl($paths->page, 'do=viewsource', true),
- 'TEXT' => 'view source'
+ 'TEXT' => $lang->get('onpage_btn_viewsource')
));
$tb .= $button->run();
}
@@ -325,7 +338,7 @@
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxHistory()); return false; }" title="View a log of actions taken on this page (alt-h)" accesskey="h"',
'PARENTFLAGS' => 'id="mdgToolbar_history"',
'HREF' => makeUrl($paths->page, 'do=history', true),
- 'TEXT' => 'history'
+ 'TEXT' => $lang->get('onpage_btn_history')
));
$tb .= $button->run();
}
@@ -339,7 +352,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxRename()); return false; }" title="Change the display name of this page (alt-r)" accesskey="r"',
'HREF' => makeUrl($paths->page, 'do=rename', true),
- 'TEXT' => 'rename',
+ 'TEXT' => $lang->get('onpage_btn_rename'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -350,7 +363,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxDelVote()); return false; }" title="Vote to have this page deleted (alt-d)" accesskey="d"',
'HREF' => makeUrl($paths->page, 'do=delvote', true),
- 'TEXT' => 'vote to delete this page',
+ 'TEXT' => $lang->get('onpage_btn_votedelete'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -361,7 +374,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxResetDelVotes()); return false; }" title="Vote to have this page deleted (alt-y)" accesskey="y"',
'HREF' => makeUrl($paths->page, 'do=resetvotes', true),
- 'TEXT' => 'reset deletion votes',
+ 'TEXT' => $lang->get('onpage_btn_votedelete_reset'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -372,7 +385,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'title="View a version of this page that is suitable for printing"',
'HREF' => makeUrl($paths->page, 'printable=yes', true),
- 'TEXT' => 'view printable version',
+ 'TEXT' => $lang->get('onpage_btn_printable'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -382,7 +395,7 @@
{
$label = $this->makeParserText($tplvars['toolbar_label']);
- $label->assign_vars(array('TEXT' => 'protection:'));
+ $label->assign_vars(array('TEXT' => $lang->get('onpage_lbl_protect')));
$t0 = $label->run();
$ctmp = '';
@@ -393,7 +406,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'accesskey="i" onclick="if ( !KILL_SWITCH ) { ajaxProtect(1); return false; }" id="protbtn_1" title="Prevents all non-administrators from editing this page. [alt-i]"'.$ctmp,
'HREF' => makeUrl($paths->page, 'do=protect&level=1', true),
- 'TEXT' => 'on'
+ 'TEXT' => $lang->get('onpage_btn_protect_on')
));
$t1 = $menubtn->run();
@@ -405,7 +418,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'accesskey="o" onclick="if ( !KILL_SWITCH ) { ajaxProtect(0); return false; }" id="protbtn_0" title="Allows everyone to edit this page. [alt-o]"'.$ctmp,
'HREF' => makeUrl($paths->page, 'do=protect&level=0', true),
- 'TEXT' => 'off'
+ 'TEXT' => $lang->get('onpage_btn_protect_off')
));
$t2 = $menubtn->run();
@@ -417,7 +430,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'accesskey="p" onclick="if ( !KILL_SWITCH ) { ajaxProtect(2); return false; }" id="protbtn_2" title="Allows only users who have been registered for 4 days to edit this page. [alt-p]"'.$ctmp,
'HREF' => makeUrl($paths->page, 'do=protect&level=2', true),
- 'TEXT' => 'semi'
+ 'TEXT' => $lang->get('onpage_btn_protect_semi')
));
$t3 = $menubtn->run();
@@ -436,7 +449,7 @@
{
// label at start
$label = $this->makeParserText($tplvars['toolbar_label']);
- $label->assign_vars(array('TEXT' => 'page wiki mode:'));
+ $label->assign_vars(array('TEXT' => $lang->get('onpage_lbl_wikimode')));
$t0 = $label->run();
// on button
@@ -448,7 +461,7 @@
$menubtn->assign_vars(array(
'FLAGS' => /* 'onclick="if ( !KILL_SWITCH ) { ajaxSetWikiMode(1); return false; }" id="wikibtn_1" title="Forces wiki functions to be allowed on this page."'. */ $ctmp,
'HREF' => makeUrl($paths->page, 'do=setwikimode&level=1', true),
- 'TEXT' => 'on'
+ 'TEXT' => $lang->get('onpage_btn_wikimode_on')
));
$t1 = $menubtn->run();
@@ -461,7 +474,7 @@
$menubtn->assign_vars(array(
'FLAGS' => /* 'onclick="if ( !KILL_SWITCH ) { ajaxSetWikiMode(0); return false; }" id="wikibtn_0" title="Forces wiki functions to be disabled on this page."'. */ $ctmp,
'HREF' => makeUrl($paths->page, 'do=setwikimode&level=0', true),
- 'TEXT' => 'off'
+ 'TEXT' => $lang->get('onpage_btn_wikimode_off')
));
$t2 = $menubtn->run();
@@ -474,7 +487,7 @@
$menubtn->assign_vars(array(
'FLAGS' => /* 'onclick="if ( !KILL_SWITCH ) { ajaxSetWikiMode(2); return false; }" id="wikibtn_2" title="Causes this page to use the global wiki mode setting (default)"'. */ $ctmp,
'HREF' => makeUrl($paths->page, 'do=setwikimode&level=2', true),
- 'TEXT' => 'global'
+ 'TEXT' => $lang->get('onpage_btn_wikimode_global')
));
$t3 = $menubtn->run();
@@ -495,7 +508,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxClearLogs()); return false; }" title="Remove all edit and action logs for this page from the database. IRREVERSIBLE! (alt-l)" accesskey="l"',
'HREF' => makeUrl($paths->page, 'do=flushlogs', true),
- 'TEXT' => 'clear page logs',
+ 'TEXT' => $lang->get('onpage_btn_clearlogs'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -503,14 +516,22 @@
// Delete page button
if ( $session->get_permissions('read') && $session->get_permissions('delete_page') && $paths->page_exists && $paths->namespace != 'Special' && $paths->namespace != 'Admin' )
{
- $s = 'delete this page';
+ $s = $lang->get('onpage_btn_deletepage');
if ( $paths->cpage['delvotes'] == 1 )
{
- $s .= ' (<b>'.$paths->cpage['delvotes'].'</b> vote)';
+ $subst = array(
+ 'num_votes' => $paths->cpage['delvotes'],
+ 'plural' => ''
+ );
+ $s .= $lang->get('onpage_btn_deletepage_votes', $subst);
}
else if ( $paths->cpage['delvotes'] > 1 )
{
- $s .= ' (<b>'.$paths->cpage['delvotes'].'</b> votes)';
+ $subst = array(
+ 'num_votes' => $paths->cpage['delvotes'],
+ 'plural' => $lang->get('meta_plural')
+ );
+ $s .= $lang->get('onpage_btn_deletepage_votes', $subst);
}
$menubtn->assign_vars(array(
@@ -542,13 +563,13 @@
{
// label at start
$label = $this->makeParserText($tplvars['toolbar_label']);
- $label->assign_vars(array('TEXT' => 'page password:'));
+ $label->assign_vars(array('TEXT' => $lang->get('onpage_lbl_password')));
$t0 = $label->run();
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxSetPassword()); return false; }" title="Require a password in order for this page to be viewed"',
'HREF' => '#',
- 'TEXT' => 'set',
+ 'TEXT' => $lang->get('onpage_btn_password_set'),
));
$t = $menubtn->run();
@@ -561,7 +582,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { return ajaxOpenACLManager(); }" title="Manage who can do what with this page (alt-m)" accesskey="m"',
'HREF' => makeUrl($paths->page, 'do=aclmanager', true),
- 'TEXT' => 'manage page access',
+ 'TEXT' => $lang->get('onpage_btn_acl'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -572,7 +593,7 @@
$menubtn->assign_vars(array(
'FLAGS' => 'onclick="if ( !KILL_SWITCH ) { void(ajaxAdminPage()); return false; }" title="Administrative options for this page" accesskey="g"',
'HREF' => makeUrlNS('Special', 'Administration', 'module='.$paths->nslist['Admin'].'PageManager', true),
- 'TEXT' => 'administrative options',
+ 'TEXT' => $lang->get('onpage_btn_admin'),
));
$this->toolbar_menu .= $menubtn->run();
}
@@ -583,7 +604,7 @@
'FLAGS' => 'id="mdgToolbar_moreoptions" onclick="if ( !KILL_SWITCH ) { return false; }" title="Additional options for working with this page"',
'PARENTFLAGS' => '',
'HREF' => makeUrl($paths->page, 'do=moreoptions', true),
- 'TEXT' => 'more options'
+ 'TEXT' => $lang->get('onpage_btn_moreoptions')
));
$tb .= $button->run();
}
@@ -632,6 +653,10 @@
// Add the e-mail address client code to the header
$this->add_header($email->jscode());
+ // Add language file
+ $lang_uri = makeUrlNS('Special', 'LangExportJSON/' . $lang->lang_id, false, true);
+ $this->add_header("<script type=\"text/javascript\" src=\"$lang_uri\"></script>");
+
// Generate the code for the Log out and Change theme sidebar buttons
// Once again, the new template parsing system can be used here
@@ -640,7 +665,7 @@
$parser->assign_vars(Array(
'HREF'=>makeUrlNS('Special', 'Logout'),
'FLAGS'=>'onclick="if ( !KILL_SWITCH ) { mb_logout(); return false; }"',
- 'TEXT'=>'Log out',
+ 'TEXT'=>$lang->get('sidebar_btn_logout'),
));
$logout_link = $parser->run();
@@ -648,7 +673,7 @@
$parser->assign_vars(Array(
'HREF'=>makeUrlNS('Special', 'Login/' . $paths->page),
'FLAGS'=>'onclick="if ( !KILL_SWITCH ) { ajaxStartLogin(); return false; }"',
- 'TEXT'=>'Log in',
+ 'TEXT'=>$lang->get('sidebar_btn_login'),
));
$login_link = $parser->run();
@@ -656,7 +681,7 @@
$parser->assign_vars(Array(
'HREF'=>makeUrlNS('Special', 'ChangeStyle/'.$paths->page),
'FLAGS'=>'onclick="if ( !KILL_SWITCH ) { ajaxChangeStyle(); return false; }"',
- 'TEXT'=>'Change theme',
+ 'TEXT'=>$lang->get('sidebar_btn_changestyle'),
));
$theme_link = $parser->run();
@@ -664,7 +689,7 @@
$parser->assign_vars(Array(
'HREF'=>makeUrlNS('Special', 'Administration'),
'FLAGS'=>'onclick="if ( !KILL_SWITCH ) { void(ajaxStartAdminLogin()); return false; }"',
- 'TEXT'=>'Administration',
+ 'TEXT'=>$lang->get('sidebar_btn_administration'),
));
$admin_link = $parser->run();
@@ -710,7 +735,9 @@
}
}
$js_dynamic .= '\';
- var ENANO_CURRENT_THEME = \''. $session->theme .'\';';
+ var ENANO_CURRENT_THEME = \''. $session->theme .'\';
+ var ENANO_LANG_ID = ' . $lang->lang_id . ';
+ var ENANO_PAGE_TYPE = "' . addslashes($this->namespace_string) . '";';
foreach($paths->nslist as $k => $c)
{
$js_dynamic .= "namespace_list['{$k}'] = '$c';";
@@ -772,6 +799,8 @@
function header($simple = false)
{
global $db, $session, $paths, $template, $plugins; // Common objects
+ global $lang;
+
ob_start();
if(!$this->theme_loaded)
@@ -798,7 +827,7 @@
{
$login_link = makeUrlNS('Special', 'Login/' . $paths->fullpage, 'level=' . $session->user_level, true);
echo '<div class="usermessage">';
- echo '<b>Your administrative session has timed out.</b> <a href="' . $login_link . '">Log in again</a>';
+ echo $lang->get('user_msg_elev_timed_out', array( 'login_link' => $login_link ));
echo '</div>';
}
if ( $this->site_disabled && $session->user_level >= USER_LEVEL_ADMIN && ( $paths->page != $paths->nslist['Special'] . 'Administration' ) )
@@ -1139,7 +1168,7 @@
// matches the MD5 of the file that the compiled file was compiled from.
if ( isset($md5) && $md5 == md5($text) )
{
- return str_replace('\\"', '"', $tpl_text);
+ return $this->compile_template_text_post(str_replace('\\"', '"', $tpl_text));
}
}
@@ -1178,7 +1207,7 @@
fclose($h);
}
- return $text; //('<pre>'.htmlspecialchars($text).'</pre>');
+ return $this->compile_template_text_post($text); //('<pre>'.htmlspecialchars($text).'</pre>');
}
@@ -1191,7 +1220,7 @@
function compile_template_text($text)
{
// this might do something else in the future, possibly cache large templates
- return $this->compile_tpl_code($text);
+ return $this->compile_template_text_post($this->compile_tpl_code($text));
}
/**
@@ -1203,9 +1232,30 @@
function parse($text)
{
$text = $this->compile_template_text($text);
+ $text = $this->compile_template_text_post($text);
return eval($text);
}
+ /**
+ * Post-processor for template code. Basically what this does is it localizes {lang:foo} blocks.
+ * @param string Mostly-processed TPL code
+ * @return string
+ */
+
+ function compile_template_text_post($text)
+ {
+ global $lang;
+ preg_match_all('/\{lang:([a-z0-9]+_[a-z0-9_]+)\}/', $text, $matches);
+ foreach ( $matches[1] as $i => $string_id )
+ {
+ $string = $lang->get($string_id);
+ $string = str_replace('\\', '\\\\', $string);
+ $string = str_replace('\'', '\\\'', $string);
+ $text = str_replace_once($matches[0][$i], $string, $text);
+ }
+ return $text;
+ }
+
// Steps to turn this:
// [[Project:Community Portal]]
// into this:
@@ -1235,6 +1285,8 @@
function tplWikiFormat($message, $filter_links = false, $filename = 'elements.tpl')
{
global $db, $session, $paths, $template, $plugins; // Common objects
+ global $lang;
+
$filter_links = false;
$tplvars = $this->extract_vars($filename);
if($session->sid_super) $as = htmlspecialchars(urlSeparator).'auth='.$session->sid_super;
@@ -1363,6 +1415,15 @@
}
}
+ preg_match_all('/\{lang:([a-z0-9]+_[a-z0-9_]+)\}/', $message, $matches);
+ foreach ( $matches[1] as $i => $string_id )
+ {
+ $string = $lang->get($string_id);
+ $string = str_replace('\\', '\\\\', $string);
+ $string = str_replace('\'', '\\\'', $string);
+ $message = str_replace_once($matches[0][$i], $string, $message);
+ }
+
/*
* HTML RENDERER
*/
@@ -1413,7 +1474,9 @@
// $message = preg_replace('#\[(http|ftp|irc):\/\/([a-z0-9\/:_\.\?&%\#@_\\\\-]+?) ([^\]]+)\\]#', '<a href="\\1://\\2">\\3</a><br style="display: none;" />', $message);
// $message = preg_replace('#\[(http|ftp|irc):\/\/([a-z0-9\/:_\.\?&%\#@_\\\\-]+?)\\]#', '<a href="\\1://\\2">\\1://\\2</a><br style="display: none;" />', $message);
- preg_match_all('/\[((https?|ftp|irc):\/\/([^@\]"\':]+)?((([a-z0-9-]+\.)*)[a-z0-9-]+)(\/[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]*(\?(([a-z0-9_-]+)(=[A-z0-9_%\|~`\!@#\$\^&\*\(\):;\.,\/-\[\]]+)?((&([a-z0-9_-]+)(=[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]+)?)*))?)?)?) ([^\]]+)\]/is', $message, $ext_link);
+ preg_match_all('/\[((https?|ftp|irc):\/\/([^@\s\]"\':]+)?((([a-z0-9-]+\.)*)[a-z0-9-]+)(\/[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]*(\?(([a-z0-9_-]+)(=[A-z0-9_%\|~`\!@#\$\^&\*\(\):;\.,\/-\[\]]+)?((&([a-z0-9_-]+)(=[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]+)?)*))?)?)?) ([^\]]+)\]/is', $message, $ext_link);
+
+ // die('<pre>' . htmlspecialchars( print_r($ext_link, true) ) . '</pre>');
for ( $i = 0; $i < count($ext_link[0]); $i++ )
{
@@ -1425,7 +1488,7 @@
$message = str_replace($ext_link[0][$i], $text_parser->run(), $message);
}
- preg_match_all('/\[((https?|ftp|irc):\/\/([^@\]"\':]+)?((([a-z0-9-]+\.)*)[a-z0-9-]+)(\/[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]*(\?(([a-z0-9_-]+)(=[A-z0-9_%\|~`\!@#\$\^&\*\(\):;\.,\/-\[\]]+)?((&([a-z0-9_-]+)(=[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]+)?)*))?)?)?)\]/is', $message, $ext_link);
+ preg_match_all('/\[((https?|ftp|irc):\/\/([^@\s\]"\':]+)?((([a-z0-9-]+\.)*)[a-z0-9-]+)(\/[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]*(\?(([a-z0-9_-]+)(=[A-z0-9_%\|~`\!@#\$\^&\*\(\):;\.,\/-\[\]]+)?((&([a-z0-9_-]+)(=[A-z0-9_%\|~`!\!@#\$\^&\*\(\):;\.,\/-]+)?)*))?)?)?)\]/is', $message, $ext_link);
for ( $i = 0; $i < count($ext_link[0]); $i++ )
{
@@ -1673,7 +1736,8 @@
$admintitle = ( $session->user_level >= USER_LEVEL_ADMIN ) ? 'title="You may disable this button in the admin panel under General Configuration."' : '';
if(getConfig('sflogo_enabled')=='1')
{
- $ob[] = '<a style="text-align: center;" href="http://sourceforge.net/" onclick="if ( !KILL_SWITCH ) { window.open(this.href);return false; }"><img style="border-width: 0px;" alt="SourceForge.net Logo" src="http://sflogo.sourceforge.net/sflogo.php?group_id='.getConfig('sflogo_groupid').'&type='.getConfig('sflogo_type').'" /></a>';
+ $sflogo_secure = ( isset($_SERVER['HTTPS']) ) ? 'https' : 'http';
+ $ob[] = '<a style="text-align: center;" href="http://sourceforge.net/" onclick="if ( !KILL_SWITCH ) { window.open(this.href);return false; }"><img style="border-width: 0px;" alt="SourceForge.net Logo" src="' . $sflogo_secure . '://sflogo.sourceforge.net/sflogo.php?group_id='.getConfig('sflogo_groupid').'&type='.getConfig('sflogo_type').'" /></a>';
}
if(getConfig('w3c_v32') =='1') $ob[] = '<a style="text-align: center;" href="http://validator.w3.org/check?uri=referer" onclick="if ( !KILL_SWITCH ) { window.open(this.href);return false; }"><img style="border: 0px solid #FFFFFF;" alt="Valid HTML 3.2" src="http://www.w3.org/Icons/valid-html32" /></a>';
if(getConfig('w3c_v40') =='1') $ob[] = '<a style="text-align: center;" href="http://validator.w3.org/check?uri=referer" onclick="if ( !KILL_SWITCH ) { window.open(this.href);return false; }"><img style="border: 0px solid #FFFFFF;" alt="Valid HTML 4.0" src="http://www.w3.org/Icons/valid-html40" /></a>';