本文整理汇总了PHP中NewsStory::getByTopic方法的典型用法代码示例。如果您正苦于以下问题:PHP NewsStory::getByTopic方法的具体用法?PHP NewsStory::getByTopic怎么用?PHP NewsStory::getByTopic使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NewsStory
的用法示例。
在下文中一共展示了NewsStory::getByTopic方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: delTopic
function delTopic()
{
global $xoopsDB, $xoopsModule;
if (!isset($_POST['ok'])) {
xoops_cp_header();
echo "<h4>" . _AM_CONFIG . "</h4>";
$xt = new XoopsTopic($xoopsDB->prefix("topics"), intval($_GET['topic_id']));
xoops_confirm(array('op' => 'delTopic', 'topic_id' => intval($_GET['topic_id']), 'ok' => 1), 'index.php', _AM_WAYSYWTDTTAL . '<br />' . $xt->topic_title('S'));
} else {
$xt = new XoopsTopic($xoopsDB->prefix("topics"), intval($_POST['topic_id']));
// get all subtopics under the specified topic
$topic_arr = $xt->getAllChildTopics();
array_push($topic_arr, $xt);
foreach ($topic_arr as $eachtopic) {
// get all stories in each topic
$story_arr = NewsStory::getByTopic($eachtopic->topic_id());
foreach ($story_arr as $eachstory) {
if (false != $eachstory->delete()) {
xoops_comment_delete($xoopsModule->getVar('mid'), $eachstory->storyid());
xoops_notification_deletebyitem($xoopsModule->getVar('mid'), 'story', $eachstory->storyid());
}
}
// all stories for each topic is deleted, now delete the topic data
$eachtopic->delete();
// Delete also the notifications and permissions
xoops_notification_deletebyitem($xoopsModule->getVar('mid'), 'category', $eachtopic->topic_id);
xoops_groupperm_deletebymoditem($xoopsModule->getVar('mid'), 'news_approve', $eachtopic->topic_id);
xoops_groupperm_deletebymoditem($xoopsModule->getVar('mid'), 'news_submit', $eachtopic->topic_id);
xoops_groupperm_deletebymoditem($xoopsModule->getVar('mid'), 'news_view', $eachtopic->topic_id);
}
updateCache();
redirect_header('index.php?op=topicsmanager', 1, _AM_DBUPDATED);
exit;
}
}
示例2: delTopic
function delTopic()
{
global $xoopsDB, $xoopsConfig, $xoopsModule;
if (empty($_POST['ok'])) {
xoops_cp_header();
echo "<h4>" . _AM_CONFIG . "</h4>";
xoops_confirm(array('op' => 'delTopic', 'topic_id' => intval($_GET['topic_id']), 'ok' => 1), 'index.php', _AM_WAYSYWTDTTAL);
} else {
$xt = new XoopsTopic($xoopsDB->prefix("topics"), $_POST['topic_id']);
// get all subtopics under the specified topic
$topic_arr = $xt->getAllChildTopics();
array_push($topic_arr, $xt);
foreach ($topic_arr as $eachtopic) {
// get all stories in each topic
$story_arr = NewsStory::getByTopic($eachtopic->topic_id());
foreach ($story_arr as $eachstory) {
if (false != $eachstory->delete()) {
xoops_comment_delete($xoopsModule->getVar('mid'), $eachstory->storyid());
xoops_notification_deletebyitem($xoopsModule->getVar('mid'), 'story', $eachstory->storyid());
}
}
// all stories for each topic is deleted, now delete the topic data
$eachtopic->delete();
xoops_notification_deletebyitem($xoopsModule->getVar('mid'), 'category', $eachtopic->topic_id);
}
redirect_header('index.php?op=topicsmanager', 1, _AM_DBUPDATED);
exit;
}
}