moodle/blocks/search/config_global.html

19 lines
614 B
HTML
Raw Normal View History

2006-06-25 23:07:36 +00:00
<div style="text-align:center;">
<label for="block_search_text">Search label</label>
<input type="text" name="block_search_text" value="<?php
if(isset($CFG->block_search_text)) {
p($CFG->block_search_text);
} else {
p("Search Moodle");
} ?>"/><br>
<label for="block_search_button">Button label</label>
<input type="text" name="block_search_button" value="<?php
if(isset($CFG->block_search_button)) {
p($CFG->block_search_button);
} else {
p("Go");
} ?>"/><br><br>
<input type="submit" value="<?php print_string('savechanges'); ?>" />
</div>