當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。