本文整理汇总了PHP中YDForm::getValue方法的典型用法代码示例。如果您正苦于以下问题:PHP YDForm::getValue方法的具体用法?PHP YDForm::getValue怎么用?PHP YDForm::getValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类YDForm
的用法示例。
在下文中一共展示了YDForm::getValue方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionLogin
function actionLogin()
{
// Redirect to default action if already logged in
if ($this->isAuthenticated() === true) {
$this->forward('default');
return;
}
// Create the login form
$form = new YDForm('loginForm');
$form->setDefaults(array('name' => 'Joe User'));
$form->addElement('text', 'loginName', 'User name:');
$form->addElement('password', 'loginPass', 'Password:');
$form->addElement('submit', 'cmdSubmit', 'Login');
// Add the rules
$form->addFormRule(array(&$this, 'checkLogin'));
// Process the form
if ($form->validate()) {
// Get username and password
$usrName = $form->getValue('loginName');
$usrPass = $form->getValue('loginPass');
// Mark the session that we are logged in
$_SESSION['usrName'] = 'pieter';
$_SESSION['isLoggedIn'] = true;
// Mark the form as valid
$this->authenticationSucceeded();
$this->forward('default');
return;
}
// Add the form to the template
$this->template->assignForm('form', $form);
// Output the template
$this->template->display('login');
}
示例2: actionAddNote
function actionAddNote()
{
// Create the add form
$form = new YDForm('addEntryForm');
// Add the elements
$form->addElement('text', 'title', 'Title:');
$form->addElement('textarea', 'body', 'Contents:');
$form->addElement('submit', 'cmdSubmit', 'Save');
// Apply filters
$form->addFilter('title', 'trim');
$form->addFilter('body', 'trim');
// Add a rule
$form->addRule('title', 'required', 'Title is required');
$form->addRule('body', 'required', 'Contents is required');
// Process the form
if ($form->validate()) {
// Save the entries in an array
$entry = array('id' => md5($form->getValue('title') . $form->getValue('body')), 'title' => $form->getValue('title'), 'body' => $form->getValue('body'));
// Save the serialized entry to a file
$this->dataDir->createFile($entry['id'] . '.dat', YDObjectUtil::serialize($entry));
// Forward to the list view
$this->forward('default');
// Return
return;
}
// Add the form to the template
$this->template->assignForm('form', $form);
// Output the template
$this->template->display();
}
示例3: actionDefault
function actionDefault()
{
// Create the form
$form = new YDForm('form1');
$elementDate = $form->addElement('dateselect', 'dateSelect1', 'Enter data:');
$elementDate = $form->addElement('dateselect', 'dateSelect2', 'Enter data:');
$elementTime = $form->addElement('timeselect', 'timeSelect1', 'Enter data:');
$elementDateTime = $form->addElement('datetimeselect', 'datetimeSelect1', 'Enter data:');
$form->addElement('submit', 'cmd1', 'Send');
$form->setDefaults(array('dateSelect1' => array('month' => 4, 'day' => 4, 'year' => 2002)));
if (YD_DEBUG == 1) {
YDDebugUtil::dump($form->_regElements, 'Registered elements');
YDDebugUtil::dump($form->_regRules, 'Registered rules');
YDDebugUtil::dump($form->_regFilters, 'Registered filters');
YDDebugUtil::dump($form->_filters, 'Filters');
YDDebugUtil::dump($form->_rules, 'Rules');
YDDebugUtil::dump($form->_formrules, 'Form Rules');
YDDebugUtil::dump($form->getValue('txt1'), 'txt1');
YDDebugUtil::dump($form->getValue('txt2'), 'txt2');
YDDebugUtil::dump($_POST, '$_POST');
YDDebugUtil::dump($_FILES, '$_FILES');
}
if ($form->validate()) {
YDDebugUtil::dump($elementDate->getTimeStamp(), '$elementDate->getTimeStamp()');
YDDebugUtil::dump($elementDate->getTimeStamp('%d/%m/%Y'), '$elementDate->getTimeStamp( "%d/%m/%Y" )');
YDDebugUtil::dump(date('M-d-Y', $elementDate->getTimeStamp()), '$elementDate->gdate( getTimeStamp() )');
YDDebugUtil::dump($elementTime->getTimeStamp(), '$elementTime->getTimeStamp()');
YDDebugUtil::dump($elementTime->getTimeStamp('%H:%M'), '$elementTime->getTimeStamp( "%H:%M" )');
YDDebugUtil::dump($elementDateTime->getTimeStamp(), '$elementDateTime->getTimeStamp()');
YDDebugUtil::dump($elementDateTime->getTimeStamp('%d/%m/%Y %H:%M'), '$elementDateTime->getTimeStamp( "%H:%M" )');
}
$form->display();
}
示例4: actionDefault
function actionDefault()
{
// Create the form
$form = new YDForm('form1');
$form->registerFilter('reverse', 'strrev');
$form->setDefaults(array('txt2' => 'First text', 'txt3' => "2\nlines", 'hid1' => 'me hidden', 'chk1' => 'x', 'chk2' => false, 'sel1' => 2));
$text =& $form->addElement('text', 'txt1', 'Enter text 1:');
$text->_label = 'new label for txt1';
$form->addElement('text', 'txt2', 'Enter text 2:', array('class' => 'textInputClass', 'name' => 'x'));
$form->addElement('textarea', 'txt3', 'Enter text 2:');
$form->addElement('textareacounter', 'txtcounter_1', 'Textarea counter 1', array(), array('maxlength' => 10, 'before' => ' (', 'after' => ' characters remaining)'));
$form->addElement('textareacounter', 'txtcounter_2', 'Textarea counter 2');
$form->addElement('radio', 'rad1', 'Select a value 1:', array(), array(1 => 'een', 2 => 'twee'));
$form->addElement('radio', 'rad2', 'Select a value 2:', array(), array(1 => 'een<br/>', 2 => 'twee'));
$form->addElement('hidden', 'hid1', '');
$form->addElement('hidden', 'hid2', '', array(), 'i am also hidden');
$form->addElement('image', 'img1', '', array(), 'http://www.scripting.com/images/xml.gif');
$form->addElement('password', 'pas1', 'Enter your password');
$form->addElement('bbtextarea', 'bbt1', 'Enter your BBCode');
$form->addElement('checkbox', 'chk1', 'Select me please');
$form->addElement('checkbox', 'chk2', 'Select me please');
$form->addElement('select', 'sel1', 'Select an option:', array(), array(1 => 'een', 2 => 'twee'));
$form->addElement('span', 'span1', 'This is a span. The next element is an image (img).');
$form->addElement('img', 'img2', 'http://www.scripting.com/images/xml.gif');
$form->addElement('file', 'fil1', 'Select an file:');
$form->addElement('submit', 'cmd1', 'Send');
$form->addElement('reset', 'res1', 'Reset');
$form->addFilter('__ALL__', 'upper');
$form->addFilter('txt1', 'trim');
$form->addFilter('txt2', 'reverse');
$form->addRule('txt1', 'required', 'txt1 is required');
$form->addRule('chk2', 'exact', 'chk2 is required', 1);
$form->addFormRule(array(&$this, 'formrule'), 'txt1 is required');
if (YDConfig::get('YD_DEBUG') == 1 || YDConfig::get('YD_DEBUG') == 2) {
YDDebugUtil::dump($form->_regElements, 'Registered elements');
YDDebugUtil::dump($form->_regRules, 'Registered rules');
YDDebugUtil::dump($form->_regFilters, 'Registered filters');
YDDebugUtil::dump($form->_filters, 'Filters');
YDDebugUtil::dump($form->_rules, 'Rules');
YDDebugUtil::dump($form->_formrules, 'Form Rules');
YDDebugUtil::dump($form->getValue('txt1'), 'txt1');
YDDebugUtil::dump($form->getValue('txt2'), 'txt2');
YDDebugUtil::dump($_POST, '$_POST');
YDDebugUtil::dump($_FILES, '$_FILES');
YDDebugUtil::dump($form->toArray());
}
if ($form->validate()) {
YDDebugUtil::dump($form->getModifiedValues(), 'Form modified values');
YDDebugUtil::dump($form->getValues(), 'Form values');
} else {
$form->display();
}
// Create the form
$form2 = new YDForm('form2');
$form2->setDefaults(array('txt1' => 'First text'));
$form2->addElement('text', 'txt1', 'Enter text 1:');
$form2->addElement('text', 'txt2', 'Enter text 2:');
$form2->addElement('submit', 'cmd1', 'Send');
$form2->display();
}
示例5: actionDefault
function actionDefault()
{
// Create the delete form
$form = new YDForm('clearCacheForm');
$form->addElement('checkbox', 'cache_tmb', 'Thumbnail cache');
$form->addElement('checkbox', 'cache_web', 'Web download cache');
$form->addElement('checkbox', 'cache_tpl', 'Template cache');
$form->addElement('submit', '_cmdSubmit', t('cleanup'), array('class' => 'button'));
$form->setDefaults(array('cache_web' => 1, 'cache_tmb' => 1, 'cache_tpl' => 1));
// Validate the form
if ($form->validate() == true) {
// Check if we need to delete the thumbnail objects
if ($form->getValue('cache_tmb') === 'on') {
$this->_deleteCacheFiles('*.tmn');
}
// Check if we need to delete the web objects
if ($form->getValue('cache_web') === 'on') {
$this->_deleteCacheFiles('*.wch');
}
// Check if we need to delete the template objects
if ($form->getValue('cache_tpl') === 'on') {
$this->_deleteCacheFiles('*.tpl.php');
}
// Add a status message
$this->tpl->assign('message', t('cache_cleaned_up'));
}
// Add the form to the template
$this->tpl->assignForm('form', $form);
// Display the template
$this->display();
}
示例6: actionSearch
function actionSearch()
{
// retrieve list of forums
$forumLogic = new ForumsLogic();
$forums = $forumLogic->retrieveAllByOrderSimple();
$selectForums = array();
foreach ($forums as $i => $item) {
$selectForums["" . $item->id] = $item->name;
}
// Create the search form
$form = new YDForm('searchForm');
$form->addElement('text', 'searchKeys', t('forums.searchstring'), array("size" => 40));
$form->addElement('select', 'searchForum', t('forums.searchforum'), array("width" => 60), $selectForums);
$form->addElement('submit', 'cmdSubmit', t('forums.search'));
// Add rules
$form->addFormRule(array(&$this, 'checkSearch'));
// Process the form
if ($form->validate()) {
$this->actionTpl->assign('searched', true);
// get and show results
$forum = $forumLogic->retrieveForumById($form->getValue('searchForum'));
$forum->loadSubjectsMatching($form->getValue('searchKeys'));
// number of results
$this->actionTpl->assign('nbposts', count($forum->subjects));
$this->actionTpl->assign('posts', $forum->subjects);
}
// Assign variables to the template
$this->actionTpl->assign('form', $form->toArray());
$content = new page($this->actionTpl->fetch('templates/forums.search.tpl'), t('forums.searching'));
$this->display($content);
}
示例7: actionDefault
function actionDefault()
{
// Create the form
$form = new YDForm('form1');
$form->registerFilter('reverse', 'strrev');
$form->setDefaults(array('txt2' => 'First text', 'txt3' => "2\nlines", 'hid1' => 'me hidden', 'chk1' => 'x', 'sel1' => 2));
$text =& $form->addElement('text', 'txt1', 'Enter text 1:');
$text->_label = 'new label for txt1';
$form->addElement('text', 'txt2', 'Enter text 2:', array('class' => 'textInputClass', 'name' => 'x'));
$form->addElement('textarea', 'txt3', 'Enter text 2:');
$form->addElement('radio', 'rad1', 'Select a value 1:', array(), array(1 => 'een', 2 => 'twee'));
$form->addElement('radio', 'rad2', 'Select a value 2:', array(), array(1 => 'een<br/>', 2 => 'twee'));
$form->addElement('hidden', 'hid1', '');
$form->addElement('hidden', 'hid2', '', array(), 'i am also hidden');
$form->addElement('image', 'img1', '', array(), 'http://www.yellowduck.be/images/site_images/rss091.gif');
$form->addElement('password', 'pas1', 'Enter your password');
$form->addElement('bbtextarea', 'bbt1', 'Enter your BBCode');
$form->addElement('checkbox', 'chk1', 'Select me please');
$form->addElement('checkbox', 'chk2', 'Select me please');
$form->addElement('select', 'sel1', 'Select an option:', array(), array(1 => 'een', 2 => 'twee'));
$form->addElement('file', 'fil1', 'Select an file:');
$form->addElement('submit', 'cmd1', 'Send');
$form->addElement('reset', 'res1', 'Reset');
$form->addFilter('__ALL__', 'upper');
$form->addFilter('txt1', 'trim');
$form->addFilter('txt2', 'reverse');
$form->addRule('txt1', 'required', 'txt1 is required');
$form->addRule('chk2', 'required', 'chk2 is required');
$form->addFormRule(array(&$this, 'formrule'), 'txt1 is required');
if (YD_DEBUG == 1) {
YDDebugUtil::dump($form->_regElements, 'Registered elements');
YDDebugUtil::dump($form->_regRules, 'Registered rules');
YDDebugUtil::dump($form->_regFilters, 'Registered filters');
YDDebugUtil::dump($form->_filters, 'Filters');
YDDebugUtil::dump($form->_rules, 'Rules');
YDDebugUtil::dump($form->_formrules, 'Form Rules');
YDDebugUtil::dump($form->getValue('txt1'), 'txt1');
YDDebugUtil::dump($form->getValue('txt2'), 'txt2');
YDDebugUtil::dump($_POST, '$_POST');
YDDebugUtil::dump($_FILES, '$_FILES');
}
if ($form->validate()) {
YDDebugUtil::dump($form->getValues(), 'Form values');
} else {
$form->display();
}
// Create the form
$form2 = new YDForm('form2');
$form2->setDefaults(array('txt1' => 'First text'));
$form2->addElement('text', 'txt1', 'Enter text 1:');
$form2->addElement('text', 'txt2', 'Enter text 2:');
$form2->addElement('submit', 'cmd1', 'Send');
$form2->display();
}
示例8: actionDefault
function actionDefault()
{
// Create the form
$form = new YDForm('form1');
// Add a first set of elements
$elementDate = $form->addElement('dateselect', 'dateSelect1', 'Enter data:');
$elementTime = $form->addElement('timeselect', 'timeSelect1', 'Enter data:');
$elementDateTime = $form->addElement('datetimeselect', 'datetimeSelect1', 'Enter data:');
// Add a second set of elements
$form->addElement('dateselect', 'dateSelect2', 'Enter data:', array(), array('yearstart' => 1970, 'yearend' => '2050'));
$form->addElement('timeselect', 'timeSelect2', 'Enter data:');
$form->addElement('datetimeselect', 'datetimeSelect2', 'Enter data:', array(), array('yearstart' => 1970, 'yearend' => '2050'));
$form->addElement('datetimeselect', 'datetimeSelect3', 'Enter data with seconds:', array(), array('seconds' => true));
// Add the send button
$form->addElement('submit', 'cmd1', 'Send');
// Set the defaults
$form->setDefaults(array('dateSelect1' => array('month' => 4, 'day' => 4, 'year' => 2002), 'dateSelect2' => strval(time()), 'timeSelect2' => strval(time()), 'datetimeSelect2' => time() + 3600 * 24));
// Display the form
$form->display();
// Show the contents of the form
if (YDConfig::get('YD_DEBUG') == 1) {
YDDebugUtil::dump($form->_regElements, 'Registered elements');
YDDebugUtil::dump($form->_regRules, 'Registered rules');
YDDebugUtil::dump($form->_regFilters, 'Registered filters');
YDDebugUtil::dump($form->_filters, 'Filters');
YDDebugUtil::dump($form->_rules, 'Rules');
YDDebugUtil::dump($form->_formrules, 'Form Rules');
YDDebugUtil::dump($form->getValue('dateSelect1'), 'dateSelect1');
YDDebugUtil::dump($form->getValue('timeSelect1'), 'timeSelect1');
YDDebugUtil::dump($form->getValue('datetimeSelect1'), 'datetimeSelect1');
YDDebugUtil::dump($form->getValues(), '$form->getValues()');
YDDebugUtil::dump($_POST, '$_POST');
YDDebugUtil::dump($_FILES, '$_FILES');
}
if ($form->validate()) {
YDDebugUtil::dump($form->getValues(), '$form->getValues()');
YDDebugUtil::dump($elementDate->getTimeStamp(), '$elementDate->getTimeStamp()');
YDDebugUtil::dump($elementDate->getTimeStamp('%d/%m/%Y'), '$elementDate->getTimeStamp( "%d/%m/%Y" )');
YDDebugUtil::dump(date('M-d-Y', $elementDate->getTimeStamp()), '$elementDate->gdate( getTimeStamp() )');
YDDebugUtil::dump($elementTime->getTimeStamp(), '$elementTime->getTimeStamp()');
YDDebugUtil::dump($elementTime->getTimeStamp('%H:%M'), '$elementTime->getTimeStamp( "%H:%M" )');
YDDebugUtil::dump($elementDateTime->getTimeStamp(), '$elementDateTime->getTimeStamp()');
YDDebugUtil::dump($elementDateTime->getTimeStamp('%d/%m/%Y %H:%M'), '$elementDateTime->getTimeStamp( "%H:%M" )');
YDDebugUtil::dump(YDStringUtil::formatDate($elementDateTime, 'datetime', 'pt'), 'YDStringUtil::formatDate');
}
}
示例9: actionDefault
function actionDefault()
{
// Get the list of files and file sizes
$cache_pub_lbl = 'Public cache ' . $this->_getTotalSizeAndCountAsText(YD_WEBLOG_CACHE_PREFIX . '*.' . YD_WEBLOG_CACHE_SUFFIX);
$cache_tmb_lbl = 'Thumbnail cache ' . $this->_getTotalSizeAndCountAsText(YD_TMP_PRE . 'N_*.*');
$cache_web_lbl = 'Web download cache ' . $this->_getTotalSizeAndCountAsText('*.wch');
$cache_tpl_lbl = 'Template cache ' . $this->_getTotalSizeAndCountAsText('*.tpl.php');
// Create the delete form
$form = new YDForm('clearCacheForm');
$form->addElement('checkbox', 'cache_pub', $cache_pub_lbl, array('style' => 'border: none;'));
$form->addElement('checkbox', 'cache_tmb', $cache_tmb_lbl, array('style' => 'border: none;'));
$form->addElement('checkbox', 'cache_web', $cache_web_lbl, array('style' => 'border: none;'));
$form->addElement('checkbox', 'cache_tpl', $cache_tpl_lbl, array('style' => 'border: none;'));
$form->addElement('submit', '_cmdSubmit', t('cleanup'), array('class' => 'button'));
$form->setDefaults(array('cache_pub' => 1, 'cache_web' => 1, 'cache_tmb' => 1, 'cache_tpl' => 1));
// Validate the form
if ($form->validate() == true) {
// Check if we need to delete the thumbnail objects
if ($form->getValue('cache_pub')) {
$this->_deleteCacheFiles(YD_WEBLOG_CACHE_PREFIX . '*.' . YD_WEBLOG_CACHE_SUFFIX);
}
// Check if we need to delete the thumbnail objects
if ($form->getValue('cache_tmb') == 1) {
$this->_deleteCacheFiles(YD_TMP_PRE . 'N_*.*');
}
// Check if we need to delete the web objects
if ($form->getValue('cache_web')) {
$this->_deleteCacheFiles('*.wch');
}
// Check if we need to delete the template objects
if ($form->getValue('cache_tpl')) {
$this->_deleteCacheFiles('*.tpl.php');
}
// Add a status message
$this->tpl->assign('message', t('cache_cleaned_up'));
}
// Add the form to the template
$this->tpl->assignForm('form', $form);
// Display the template
$this->display();
}
示例10: actionDefault
function actionDefault()
{
// Mark the form as not valid
$this->setVar('formValid', false);
// Create the form
$form = new YDForm('emailForm');
// Add the elements
$form->addElement('text', 'email', 'Enter your email address:', array('style' => 'width: 300px;'));
$form->addElement('submit', 'cmdSubmit', 'Send');
// Apply a filter
$form->addFilter('email', 'trim');
// Add a rule
$form->addRule('email', 'email', 'Please enter a valid email address');
// Process the form
if ($form->validate()) {
// Mark the form as valid
$this->setVar('formValid', true);
// Parse the template for the email
$emlTpl = new YDTemplate();
$emlTpl->setVar('email', $form->getValue('email'));
$body = $emlTpl->getOutput('email_template');
// Send the email
$eml = new YDEmail();
$eml->setFrom('pieter@yellowduck.be', YD_FW_NAME);
$eml->addTo($form->getValue('email'), 'Yellow Duck');
$eml->setSubject('Hello from Pieter & Fiona!');
$eml->setHtmlBody($body);
$eml->addAttachment('email.tpl');
$eml->addHtmlImage('fsimage.jpg', 'image/jpeg');
$result = $eml->send();
// Add the result
$this->setVar('result', $result);
}
// Add the form to the template
$this->setVar('form_html', $form->toHtml());
$this->addForm('form', $form);
// Output the template
$this->outputTemplate();
}
示例11: actionEditPost
function actionEditPost()
{
if (!isset($_GET['idPost'])) {
$this->errorRequete();
return;
}
if ($this->user->authentificated) {
$postlogic = new PostsLogic();
$post = $postlogic->retrievePostById($_GET['idPost']);
if ($post != null) {
if ($this->user->rightslevel >= LEVEL_MODERATOR || $this->user->id == $post->idAuthor) {
// Create the add post form
$form = new YDForm('postEdit');
$form->addElement('hidden', 'idPost', $post->id);
$form->addElement('text', 'postTitle', t('posts.messagetitle'), array("size" => 60));
$form->addElement('textarea', 'postContent', t('posts.message'), array("cols" => 50, "rows" => 8));
$form->addElement('submit', 'cmdSubmit', t('posts.editmessage'));
// Add rules
$form->addFormRule(array(&$this, 'simpleCheckPost'));
// Process the form
if ($form->validate()) {
$post->title = $form->getValue('postTitle');
$post->content = $form->getValue('postContent');
$post->idEditor = $this->user->id;
$post->ipEditor = $this->user->ip;
$post->dateEdited = date('Y-m-d H:i:s', mktime());
$post->update();
// on redirige sur le post parent si il existe
if ($post->idPostParent != null) {
$postParent = $postlogic->retrievePostById($post->idPostParent);
$postParent->dateAnswer = date('Y-m-d H:i:s', mktime());
$postParent->update();
$this->actionTpl->assign('post', $postParent);
} else {
$this->actionTpl->assign('post', $post);
}
$this->actionTpl->assign('editMessage', true);
// we are editing the message
$content = new page($this->actionTpl->fetch('templates/posts.success.tpl'), t('posts.updsuccess'));
$this->display($content);
return;
}
$form->setDefaults(array('postTitle' => $post->title));
$form->setDefaults(array('postContent' => $post->content));
// Assign variables to the template
$this->actionTpl->assign('form', $form->toArray());
// forms
$this->actionTpl->assign('user', $this->user);
// user for rights
$this->actionTpl->assign('editMessage', true);
// we are editing the message
$content = new page($this->actionTpl->fetch('templates/posts.new.tpl'), t('posts.messageupdate'));
$this->display($content);
return;
} else {
$this->errorRequete(t('posts.notrightupdate'));
return;
}
} else {
$this->errorRequete(t('posts.donotexists'));
return;
}
} else {
$content = new page($this->actionTpl->fetch('templates/user.notAuth.tpl'), t('global.notconnected'));
}
}
示例12: actionSuscribe
function actionSuscribe()
{
if (!$this->user->authentificated) {
// Create the profile form
$form = new YDForm('suscribeForm');
$form->addElement('text', 'suscribeLogin', t('user.login'));
$form->addElement('textarea', 'suscribeDescription', t('user.desc'));
$form->addElement('password', 'suscribePassUn', t('user.pwd'));
$form->addElement('password', 'suscribePassDeux', t('user.confirmpwd'));
$form->addElement('submit', 'cmdSubmit', t('user.valid'));
// Add rules
$form->addFormRule(array(&$this, 'checkSuscribe'));
// Process the form
if ($form->validate()) {
// Insert profile
$this->user->id = '';
$this->user->login = $form->getValue('suscribeLogin');
$this->user->description = $form->getValue('suscribeDescription');
$this->user->password = md5($form->getValue('suscribePassUn'));
$this->user->insert();
$this->user->auth();
$_GET['idUser'] = $this->user->id;
$_SESSION['s_user'] = YDObjectUtil::serialize($this->user);
// Redirect sur les forums
header('location: forums.php');
return;
}
// Assign variables to the template
$this->actionTpl->assign('form', $form->toArray());
$content = new page($this->actionTpl->fetch('templates/user.suscribe.tpl'), 'Inscription');
// Display the action template into the master template
$this->display($content);
} else {
$this->actionMonProfil();
return;
}
}
示例13: actionManageForums
function actionManageForums()
{
// Create the addForum form
$form = new YDForm('forumForm');
$form->addElement('text', 'forumTitle', t('admin.newforumtitle'), array("size" => 40));
$form->addElement('text', 'forumPoids', t('admin.forumweightorder'), array());
$form->addElement('submit', 'cmdSubmit', t('admin.forumcreate'));
// Add rules
$form->addFormRule(array(&$this, 'checkNewForum'));
$form->addRule('forumPoids', 'numeric', t('admin.forumweightinteger'));
// Process the form
if ($form->validate()) {
// get and show results
$forum = new ForumObject($form->getValue('forumTitle'), $form->getValue('forumPoids'));
$forum->insert();
}
// Future defaults values
$form->setDefaults(array('forumTitle' => ''));
$form->setDefaults(array('forumPoids' => ''));
// retrieve existing forums
$forumLogic = new ForumsLogic();
$forums = $forumLogic->retrieveAllByOrderSimple();
// Assign variables to the template
$this->actionTpl->assign('form', $form->toArray());
$this->actionTpl->assign('forums', $forums);
$content = new Page($this->actionTpl->fetch('templates/admin.forums.list.tpl'), t('admin.manageforums'), $this->menusAdmin);
// Display the action template into the master template
$this->display($content);
}