本文整理汇总了PHP中table_class::find_by_resource_id方法的典型用法代码示例。如果您正苦于以下问题:PHP table_class::find_by_resource_id方法的具体用法?PHP table_class::find_by_resource_id怎么用?PHP table_class::find_by_resource_id使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类table_class
的用法示例。
在下文中一共展示了table_class::find_by_resource_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: explode
*/
//handle the keywords
$keywords = explode('||', $news->keywords);
if ($keywords) {
foreach ($keywords as $val) {
if (empty($val)) {
continue;
}
$db->execute("insert into eb_news_keywords (name) values('{$val}') on duplicate key update name='{$val}'");
}
}
//handle the publish schedule
if (isset($_POST['publish_schedule_date'])) {
$schedule = new table_class('eb_publish_schedule');
if ($id) {
$schedule->find_by_resource_id($id);
}
if ($_POST['publish_schedule_date']) {
$schedule->publish_date = $_POST['publish_schedule_date'];
$schedule->resource_id = $news->id;
$schedule->resource_type = 'news';
$schedule->save();
} else {
if ($schedule->id) {
$schedule->delete();
}
}
}
if ($_POST['copy_news']) {
$news->copy_from = $news->id;
$news->id = 0;