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


PHP NewsStory::setBodyText方法代码示例

本文整理汇总了PHP中NewsStory::setBodyText方法的典型用法代码示例。如果您正苦于以下问题:PHP NewsStory::setBodyText方法的具体用法?PHP NewsStory::setBodyText怎么用?PHP NewsStory::setBodyText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在NewsStory的用法示例。


在下文中一共展示了NewsStory::setBodyText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: NewsStory

     include "storyform.inc.php";
     echo "</td></tr></table>";
     break;
 case "preview":
     xoops_cp_header();
     echo "<h4>" . _AM_CONFIG . "</h4>";
     if (isset($storyid)) {
         $story = new NewsStory($storyid);
         $published = $story->published();
         $expired = $story->expired();
     } else {
         $story = new NewsStory();
     }
     $story->setTitle($_POST['title']);
     $story->setHomeText($_POST['hometext']);
     $story->setBodyText($_POST['bodytext']);
     if (isset($_POST['nohtml']) && ($_POST['nohtml'] == 0 || $_POST['nohtml'] == 1)) {
         $story->setNohtml($_POST['nohtml']);
     }
     if (isset($_POST['nosmiley']) && ($_POST['nosmiley'] == 0 || $_POST['nosmiley'] == 1)) {
         $story->setNosmiley($_POST['nosmiley']);
     }
     $xt = new XoopsTopic($xoopsDB->prefix("topics"));
     $p_title = $story->title("Preview");
     $p_hometext = $story->hometext("Preview");
     $p_bodytext = $story->bodytext("Preview");
     $title = $story->title("InForm");
     $hometext = $story->hometext("InForm");
     $bodytext = $story->bodytext("InForm");
     echo "<table width='100%' border='0' cellspacing='1' class='outer'><tr><td class=\"odd\">";
     $timage = "";
开发者ID:koki-h,项目名称:xoops_utf8,代码行数:31,代码来源:index.php

示例2: NewsStory

     include "storyform.inc.php";
     echo "</td></tr></table>";
     break;
 case "preview":
     xoops_cp_header();
     echo "<h4>" . _AM_CONFIG . "</h4>";
     if (isset($storyid)) {
         $story = new NewsStory($storyid);
         $published = $story->published();
         $expired = $story->expired();
     } else {
         $story = new NewsStory();
     }
     $story->setTitle($title);
     $story->setHomeText($hometext);
     $story->setBodyText($bodytext);
     if (isset($nohtml) && ($nohtml == 0 || $nohtml == 1)) {
         $story->setNohtml($nohtml);
     }
     if (isset($nosmiley) && ($nosmiley == 0 || $nosmiley == 1)) {
         $story->setNosmiley($nosmiley);
     }
     $xt = new XoopsTopic($xoopsDB->prefix("topics"));
     $p_title = $story->title("Preview");
     $p_hometext = $story->hometext("Preview");
     $p_bodytext = $story->bodytext("Preview");
     $title = $story->title("InForm");
     $hometext = $story->hometext("InForm");
     $bodytext = $story->bodytext("InForm");
     echo "<table width='100%' border='0' cellspacing='1' class='outer'><tr><td class=\"odd\">";
     $timage = "";
开发者ID:amjadtbssm,项目名称:website,代码行数:31,代码来源:index.php


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