本文整理汇总了PHP中NewsStory::setHomeText方法的典型用法代码示例。如果您正苦于以下问题:PHP NewsStory::setHomeText方法的具体用法?PHP NewsStory::setHomeText怎么用?PHP NewsStory::setHomeText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NewsStory
的用法示例。
在下文中一共展示了NewsStory::setHomeText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: NewsStory
$type = "admin";
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\">";
示例2: NewsStory
$type = "admin";
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\">";