本文整理匯總了PHP中Invitation::generate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Invitation::generate方法的具體用法?PHP Invitation::generate怎麽用?PHP Invitation::generate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Invitation
的用法示例。
在下文中一共展示了Invitation::generate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dirname
require_once dirname(dirname(__FILE__)) . '/Invitation.php';
if (array_key_exists('save', $_POST)) {
foreach ($_POST as $key => $value) {
if (strpos($key, 'code_') === 0 && trim($value) != '') {
$invitation = Invitation::getByCode(substr($key, 5));
$invitation->setComment($value);
$invitation->save();
}
}
header("Location: #message=saved");
exit;
}
if (array_key_exists('add', $_POST) && is_numeric($_POST['add'])) {
$howmany = (int) $_POST['add'];
if ($howmany > 0) {
Invitation::generate($howmany);
}
header("Location: #message=added");
exit;
}
$_styles = array('http://yui.yahooapis.com/2.7.0/build/button/assets/skins/sam/button.css', 'http://yui.yahooapis.com/2.7.0/build/container/assets/skins/sam/container.css');
$_scripts = array('http://yui.yahooapis.com/2.7.0/build/yahoo-dom-event/yahoo-dom-event.js', 'http://yui.yahooapis.com/2.7.0/build/animation/animation-min.js', 'http://yui.yahooapis.com/2.7.0/build/connection/connection-min.js', 'http://yui.yahooapis.com/2.7.0/build/element/element-min.js', 'http://yui.yahooapis.com/2.7.0/build/button/button-min.js', 'http://yui.yahooapis.com/2.7.0/build/dragdrop/dragdrop-min.js', 'http://yui.yahooapis.com/2.7.0/build/container/container-min.js');
require_once UserConfig::$header;
?>
<script>
YAHOO.util.Event.onDOMReady(function() {
showMessages({
added: { 'class': 'success', 'text': 'Invitations added'},
saved: { 'class': 'success', 'text': 'Invitation comments saved'},
});
});