本文整理汇总了PHP中Section::getDescription方法的典型用法代码示例。如果您正苦于以下问题:PHP Section::getDescription方法的具体用法?PHP Section::getDescription怎么用?PHP Section::getDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Section
的用法示例。
在下文中一共展示了Section::getDescription方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: putGS
</option>
</select>
</td>
</tr>
<?php
}
?>
<tr>
<td align="right" valign="top"><?php
putGS("Description");
?>
:</td>
<td>
<textarea name="cDescription" id="cDescription" class="tinymce"
rows="20" cols="80"><?php
p($sectionObj->getDescription());
?>
</textarea>
</td>
</tr>
<?php
if (SaaS::singleton()->hasPermission('ManageSectionTemplates')) {
?>
<tr>
<td colspan="2" style="padding-top:20px;">
<b><?php
putGS("Default templates");
?>
</b>
<hr noshade size="1" color="black" />
</td>
示例2: putGS
</tr>
<tr>
<td align="right"><?php putGS("Subscriptions"); ?>:</td>
<td>
<select name="cSubs" class="input_select">
<option value="n"> --- </option>
<option value="a"><?php putGS("Add section to all subscriptions."); ?></option>
<option value="d"><?php putGS("Delete section from all subscriptions."); ?></option>
</select>
</td>
</tr>
<tr>
<td align="right" valign="top"><?php putGS("Description"); ?>:</td>
<td>
<textarea name="cDescription" id="cDescription" class="tinymce"
rows="20" cols="80"><?php p($sectionObj->getDescription()); ?></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="padding-top:20px;">
<b><?php putGS("Default templates"); ?></b>
<hr noshade size="1" color="black" />
</td>
</tr>
<tr>
<td align="right"><?php putGS("Section Template"); ?>:</td>
<td>
<select name="cSectionTplId" class="input_select">
<option value="0">---</option>
<?php
foreach ($templates as $template) {