MDL-10210 Added the user preferences, using moodleform.
[moodle-pu.git] / blocks / search / config_global.html
blob4f69a7da169b7129009d301d2f0e888bc76da52d
1 <div style="text-align:center;">
2 <label for="block_search_text">Search label</label>
3 <input id="block_search_text" type="text" name="block_search_text" value="<?php
4 if(isset($CFG->block_search_text)) {
5 p($CFG->block_search_text);
6 } else {
7 p("Search Moodle");
8 } ?>"/><br/>
10 <label for="block_search_button">Button label</label>
11 <input id="block_search_button" type="text" name="block_search_button" value="<?php
12 if(isset($CFG->block_search_button)) {
13 p($CFG->block_search_button);
14 } else {
15 p("Go");
16 } ?>"/><br/><br/>
18 <input type="submit" value="<?php print_string('savechanges'); ?>" />
19 </div>