本文整理汇总了PHP中Restaurant::update_cached_version方法的典型用法代码示例。如果您正苦于以下问题:PHP Restaurant::update_cached_version方法的具体用法?PHP Restaurant::update_cached_version怎么用?PHP Restaurant::update_cached_version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Restaurant
的用法示例。
在下文中一共展示了Restaurant::update_cached_version方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addOptionFood
function addOptionFood()
{
$id = (int) Url::get('id');
$fid = (int) Url::get('fid');
$group_name = Url::get('group_name');
$group_name_en = Url::get('group_name_en');
$group_alias = Url::get('group_alias');
$opt_desc = Url::get('opt_desc');
$opt_desc_en = Url::get('opt_desc_en');
$opt_price = Url::get('opt_price');
$opt_type = Url::get('opt_type');
$opt_enable = Url::get('opt_enable');
if (empty($group_name)) {
$group_name = 'Lựa chọn';
}
if (empty($group_alias)) {
if (!empty($group_name)) {
$group_alias = strtolower(EClassApi::safe_title($group_name));
}
} else {
$group_alias = strtolower(EClassApi::safe_title($group_alias));
}
$num_item = count($opt_desc);
if ($num_item > 0) {
for ($index = 0; $index < $num_item; $index++) {
if (empty($opt_desc[$index]) || empty($opt_desc_en[$index])) {
continue;
}
if (intval($opt_type[$index]) == 0 && strtoupper($opt_desc_en[$index]) != 'YES' && strtoupper($opt_desc_en[$index]) != 'NO') {
continue;
}
if (!isset($opt_enable[$index])) {
$opt_enable[$index] = 0;
} else {
$opt_enable[$index] = 1;
}
$option = array('fid' => $id, 'description' => $opt_desc[$index], 'description_en' => $opt_desc_en[$index], 'group_name' => $group_name, 'group_name_en' => $group_name_en, 'group_alias' => $group_alias, 'type' => intval($opt_type[$index]), 'price' => intval($opt_price[$index]), 'enable' => intval($opt_enable[$index]));
DB::insert('food_option', $option);
if (MEMCACHE_ON) {
$r = mysql_fetch_assoc(DB::query("SELECT * FROM food_res WHERE id=" . $fid));
eb_memcache::do_remove('supplier_food_' . $r['rid']);
}
}
}
// Get Food Options
$query = DB::query('SELECT * FROM food_option WHERE fid = ' . $id);
$list_option = array();
$count = 0;
while ($row = mysql_fetch_assoc($query)) {
$count++;
$row['price'] = EClassApi::numberFormat($row['price']);
$list_option[$row['group_name']][] = $row;
}
mysql_free_result($query);
// Get Food Item
$query = DB::query('SELECT * FROM food_res fr INNER JOIN food f ON fr.fid = f.id AND f.id = ' . $id);
$f = mysql_fetch_assoc($query);
$f['food_options'] = $list_option;
mysql_free_result($query);
// Update Cached Version
Restaurant::update_cached_version($fid);
global $display;
$display->add('f', $f);
$display->add('id', $id);
$display->output('AdminRestaurant/FoodOptions');
exit;
}