-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_form.php
26 lines (23 loc) · 891 Bytes
/
config_form.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
$project_link = get_option('default_project_link');
$project_link_label = get_option('default_project_link_label');
$view = get_view();
?>
<div class="field">
<h3>Project Link</h3>
<div class="inputs">
<?php echo $view->formTextarea('project_link', $project_link, array('rows' => '1', 'cols' => '30', 'class' => array('textinput'))); ?>
<p class="explanation">
Edit this statement to include a custom to a web based project guide.
</p>
</div>
</div>
<div class="field">
<h3>Project Link Label</h3>
<div class="inputs">
<?php echo $view->formTextarea('project_link_label', $project_link_label, array('rows' => '1', 'cols' => '30', 'class' => array('textinput'))); ?>
<p class="explanation">
Edit this value to specify the label used for the link to the project guide.
</p>
</div>
</div>