more comments plus an id rename

This commit is contained in:
Friendika 2010-12-23 19:31:53 -08:00
parent cbb724e1c0
commit 1438b3d67d
2 changed files with 13 additions and 3 deletions

View File

@ -141,7 +141,7 @@ function randplace_settings_post($a,$post) {
}
/*
/**
* Called from the end of the settings form.
* Add our own settings info to the page.
*
@ -154,19 +154,25 @@ function randplace_settings(&$a,&$s) {
if(! local_user())
return;
/* Add our stylesheet so we can match the page layout */
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/randplace/randplace.css' . '" media="all" />' . "\r\n";
/* Get the current state of our config variable */
$enabled = get_pconfig(local_user(),'randplace','enable');
$checked = (($enabled) ? ' checked="checked" ' : '');
/* Add some HTML to the form */
$s .= '<h3>' . t('Randplace Settings') . '</h3>';
$s .= '<div id="randplace-enable-wrapper">';
$s .= '<label id="randplace-enable-label" for="randplace-enable">' . t('Enable Randplace Plugin') . '</label>';
$s .= '<label id="randplace-enable-label" for="randplace-checkbox">' . t('Enable Randplace Plugin') . '</label>';
$s .= '<input id="randplace-checkbox" type="checkbox" name="randplace" value="1" ' . $checked . '/>';
$s .= '</div><div class="clear"></div>';
// provide another submit button
/* provide another submit button */
$s .= '<div class="settings-submit-wrapper" ><input type="submit" name="submit" class="settings-submit" value="' . t('Submit') . '" /></div>';

View File

@ -20,3 +20,7 @@
$files = glob('include/*.php');
foreach($files as $file)
include_once($file);
$files = glob('addon/*.php');
foreach($files as $file)
include_once($file);