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


PHP NewsStory::nosmiley方法代码示例

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


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

示例1: NewsStory

 }
 //if($storyid==0 && isset($_POST['storyid'])) {
 //	$storyid=intval($_POST['storyid']);
 //}
 $story = new NewsStory($storyid);
 if (!$gperm_handler->checkRight('news_view', $story->topicid(), $groups, $module_id)) {
     redirect_header(XOOPS_URL . '/modules/news/index.php', 0, _NOPERM);
     exit;
 }
 echo "<table width='100%' border='0' cellspacing='1' class='outer'><tr><td class=\"odd\">";
 echo '<h4>' . _AM_EDITARTICLE . '</h4>';
 $title = $story->title('Edit');
 $hometext = $story->hometext('Edit');
 $bodytext = $story->bodytext('Edit');
 $nohtml = $story->nohtml();
 $nosmiley = $story->nosmiley();
 $description = $story->description();
 $keywords = $story->keywords();
 $ihome = $story->ihome();
 $newsauthor = $story->uid();
 $topicid = $story->topicid();
 $notifypub = $story->notifypub();
 $picture = $story->picture();
 $approve = 0;
 $published = $story->published();
 if (isset($published) && $published > 0) {
     $approve = 1;
 }
 if ($story->published() != 0) {
     $published = $story->published();
 }
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:31,代码来源:submit.php


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