Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions views/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,27 @@
<ul>
<li>
<?php
echo $this->Form->Label('Name', 'Name');
echo $this->Form->Label('Insert Name', 'Name');
?>
<span style="color: gray;">For internal reference</span>
<?php
echo $this->Form->TextBox('Name');
?>
</li>
<li>
<?php
echo $this->Form->Label('Insert', 'Body');
?>
<span style="color: gray;">Plain Text and HTML</span>
<?php
echo $this->Form->TextBox('Body', array('multiline' => TRUE));
?>
</li>
<li id="MobileBodyCheck">
<?php
echo $this->Form->CheckBox('MobileBodyCheck', 'Use a separate insert for Mobile users?', array('checked' => 'checked'));
?>
<span style="color: gray;">If not checked the above insert will also be shown on the mobile theme.</span>
</li>
<li id="MobileBodyRow">
<?php
Expand All @@ -32,7 +39,10 @@
</li>
<li>
<?php
echo $this->Form->Label('Discussion', 'DiscussionID');
echo $this->Form->Label('Discussion ID', 'DiscussionID');
?>
<span style="color: gray;">Find the ID in the discussion URL (www.yourforum.com/discussion/ID/title...)</span>
<?php
echo $this->Form->TextBox('DiscussionID');
?>
</li>
Expand Down