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