本文整理匯總了PHP中notifications::postProcessAction方法的典型用法代碼示例。如果您正苦於以下問題:PHP notifications::postProcessAction方法的具體用法?PHP notifications::postProcessAction怎麽用?PHP notifications::postProcessAction使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類notifications
的用法示例。
在下文中一共展示了notifications::postProcessAction方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: switch
$result = '';
if (isset($_POST['function'])) {
switch ($_POST['function']) {
case 'displayCurrency':
$currency = tep_db_prepare_input($_POST['currency']);
$value = tep_db_prepare_input($_POST['value']);
$result = displayCurrency($currency, $value);
break;
}
}
echo utf8_encode($result);
exit;
}
}
//Other Post Function
$obj_notifications->postProcessAction();
//RETRIEVE LANGUAGE
$query = "SELECT * FROM languages";
$result = tep_db_query($query);
$languages = array();
while ($row = tep_db_fetch_array($result)) {
$languages[$row['languages_id']]['name'] = $row['name'];
$languages[$row['languages_id']]['code'] = $row['code'];
$languages[$row['languages_id']]['path'] = $row['directory'];
}
// Update Status login
tep_db_query("UPDATE minierp_users SET is_login_manobo=1, last_access_time_manobo = " . time() . " WHERE id = " . $session_userinfo['id']);
//RETRIEVE PRODUCT CATEGORIES
$product_categories_name = array();
$catq = tep_db_query("SELECT c.categories_id, cd.categories_name FROM categories c INNER JOIN categories_description cd ON cd.categories_id=c.categories_id AND cd.language_id=1 WHERE c.parent_id=0");
while ($row = tep_db_fetch_array($catq)) {