当前位置: 首页>>代码示例>>PHP>>正文


PHP Section::getDescription方法代码示例

本文整理汇总了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>
开发者ID:nidzix,项目名称:Newscoop,代码行数:31,代码来源:edit.php

示例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) {
开发者ID:nistormihai,项目名称:Newscoop,代码行数:31,代码来源:edit.php


注:本文中的Section::getDescription方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。