seeddms-code/views/bootstrap/class.AddEvent.php

128 lines
2.8 KiB
PHP
Raw Normal View History

2012-12-14 07:53:13 +00:00
<?php
/**
* Implementation of AddEvent view
*
* @category DMS
* @package SeedDMS
2012-12-14 07:53:13 +00:00
* @license GPL 2
* @version @version@
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
/**
* Include parent class
*/
require_once("class.Bootstrap.php");
/**
* Class which outputs the html page for AddEvent view
*
* @category DMS
* @package SeedDMS
2012-12-14 07:53:13 +00:00
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
class SeedDMS_View_AddEvent extends SeedDMS_Bootstrap_Style {
2012-12-14 07:53:13 +00:00
2016-03-16 11:58:18 +00:00
function js() { /* {{{ */
2017-01-31 16:20:45 +00:00
$strictformcheck = $this->params['strictformcheck'];
2016-03-16 11:58:18 +00:00
header('Content-Type: application/javascript; charset=UTF-8');
2012-12-14 07:53:13 +00:00
?>
function checkForm()
{
2013-05-23 14:07:00 +00:00
msg = new Array();
if (document.form1.name.value == "") msg.push("<?php printMLText("js_no_name");?>");
2012-12-14 07:53:13 +00:00
<?php
2017-01-31 16:20:45 +00:00
if ($strictformcheck) {
2013-05-23 14:07:00 +00:00
?>
if (document.form1.comment.value == "") msg.push("<?php printMLText("js_no_comment");?>");
2012-12-14 07:53:13 +00:00
<?php
}
?>
2013-05-23 14:07:00 +00:00
if (msg != "") {
noty({
text: msg.join('<br />'),
type: 'error',
dismissQueue: true,
layout: 'topRight',
theme: 'defaultTheme',
_timeout: 1500,
});
2012-12-14 07:53:13 +00:00
return false;
}
else
return true;
}
2016-03-16 11:58:18 +00:00
$(document).ready(function() {
$('body').on('submit', '#form1', function(ev){
if(checkForm()) return;
2016-03-22 13:47:13 +00:00
ev.preventDefault();
2016-03-16 11:58:18 +00:00
});
});
<?php
} /* }}} */
function show() { /* {{{ */
$this->htmlStartPage(getMLText("calendar"));
$this->globalNavigation();
$this->contentStart();
$this->pageNavigation("", "calendar");
$this->contentHeading(getMLText("add_event"));
$this->contentContainerStart();
$expdate = date('Y-m-d');
?>
2017-01-01 13:48:16 +00:00
<form class="form-horizontal" action="../op/op.AddEvent.php" id="form1" name="form1" method="post">
2018-04-23 13:50:46 +00:00
<?php
$this->formField(
getMLText("from"),
$this->getDateChooser($expdate, "from", $this->params['session']->getLanguage())
);
$this->formField(
getMLText("to"),
$this->getDateChooser($expdate, "to", $this->params['session']->getLanguage())
);
$this->formField(
getMLText("name"),
array(
'element'=>'input',
'type'=>'text',
'id'=>'name',
'name'=>'name',
'required'=>true
)
2018-04-23 13:50:46 +00:00
);
$this->formField(
getMLText("comment"),
array(
'element'=>'textarea',
'name'=>'comment',
'rows'=>4,
'cols'=>80
)
2018-04-23 13:50:46 +00:00
);
$this->formSubmit(getMLText('add_event'));
?>
2017-01-01 13:48:16 +00:00
2012-12-14 07:53:13 +00:00
</form>
2018-04-23 13:50:46 +00:00
2012-12-14 07:53:13 +00:00
<?php
$this->contentContainerEnd();
$this->contentEnd();
2012-12-14 07:53:13 +00:00
$this->htmlEndPage();
} /* }}} */
}
?>