本文整理汇总了PHP中Catalog::create方法的典型用法代码示例。如果您正苦于以下问题:PHP Catalog::create方法的具体用法?PHP Catalog::create怎么用?PHP Catalog::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Catalog
的用法示例。
在下文中一共展示了Catalog::create方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: entry
private function entry($role, $customer, $start, $end)
{
$catalog = Catalog::create(array('title' => $role . ' - ' . $customer, 'description' => '', 'user_id' => 1, 'tags' => ''));
Car::create(['role' => $role, 'customer' => $customer, 'start' => $start, 'end' => $end, 'main_pic' => '', 'catalog_id' => $catalog->id, 'user_id' => 1]);
}
示例2: ob_end_flush
break;
}
ob_end_flush();
if (!strlen($_POST['type']) || $_POST['type'] == 'none') {
Error::add('general', T_('Error: Please select a catalog type'));
}
if (!strlen($_POST['name'])) {
Error::add('general', T_('Error: Name not specified'));
}
if (!Core::form_verify('add_catalog', 'post')) {
UI::access_denied();
exit;
}
// If an error hasn't occured
if (!Error::occurred()) {
$catalog_id = Catalog::create($_POST);
if (!$catalog_id) {
require AmpConfig::get('prefix') . '/templates/show_add_catalog.inc.php';
break;
}
$catalog = Catalog::create_from_id($catalog_id);
// Run our initial add
$catalog->add_to_catalog($_POST);
UI::show_box_top(T_('Catalog Created'), 'box box_catalog_created');
echo "<h2>" . T_('Catalog Created') . "</h2>";
Error::display('general');
Error::display('catalog_add');
UI::show_box_bottom();
show_confirmation('', '', AmpConfig::get('web_path') . '/admin/catalog.php');
} else {
require AmpConfig::get('prefix') . '/templates/show_add_catalog.inc.php';