openstackweb/datepicker/code/JQueryUIDatePickerField.php
Sebastian Marcet 00b077eb8f [smarcet] - #7612
* refactoring

Conflicts:

	openstack/_config.php
	themes/openstack/templates/Layout/SangriaPage_SetCategorySponsors.ss
	themes/openstack/templates/Layout/SangriaPage_ViewSponsorsRequest.ss

Conflicts:

	openstack/_config.php
	openstack/code/SangriaPage.php
	themes/openstack/templates/Layout/SangriaPage_AddInvolvementType.ss

Conflicts:

	openstack/code/SangriaPage.php
2014-11-24 14:06:33 -03:00

94 lines
3.4 KiB
PHP

<?php
/**
* Copyright 2014 Openstack Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
require_once 'Zend/Date.php';
class JQueryUIDatePickerField extends TextField {
private $data_dependant;
protected $locale = null;
protected $valueObj = null;
public function __construct($name, $title = null, $value = '', $form = null,$data_dependant=""){
$this->data_dependant = $data_dependant;
if(!$this->locale) {
$this->locale = i18n::get_locale();
}
parent::__construct($name, $title, $value, 6, $form);
}
function Field() {
$this->addExtraClass('DatePickerField');
Requirements::block(SAPPHIRE_DIR .'/thirdparty/jquery/jquery.js');
Requirements::javascript('themes/openstack/javascript/jquery-2.0.3.min.js');
Requirements::javascript('themes/openstack/javascript/jquery-migrate-1.2.1.min.js');
Requirements::css(THIRDPARTY_DIR . '/jquery-ui-themes/smoothness/jquery-ui.css');
Requirements::javascript(THIRDPARTY_DIR . '/jquery-ui/jquery-ui.js');
Requirements::javascript("datepicker/javascript/datepicker.js");
$attributes = array(
'type' => 'text',
'class' => 'text' . ($this->extraClass() ? $this->extraClass() : ''),
'id' => $this->id(),
'name' => $this->Name(),
'value' => $this->Value(),
'tabindex' => $this->getTabIndex(),
'maxlength' => ($this->maxLength) ? $this->maxLength : null,
'size' => ($this->maxLength) ? min( $this->maxLength, 10 ) : null,
);
if(!empty($this->data_dependant)){
$attributes["data-dependant-on"] = $this->data_dependant;
}
if($this->disabled) $attributes['disabled'] = 'disabled';
return $this->createTag('input', $attributes);
}
/**
* Sets the internal value to ISO date format.
*
* @param String|Array $val
*/
function setValue($val) {
if(empty($val)) {
$this->value = null;
$this->valueObj = null;
} else {
// Quick fix for overzealous Zend validation, its case sensitive on month names (see #5990)
if(is_string($val)) $val = ucwords(strtolower($val));
// load ISO date from database (usually through Form->loadDataForm())
if(!empty($val) && Zend_Date::isDate($val, 'yyyy-MM-dd')) {
$this->valueObj = new Zend_Date($val, 'yyyy-MM-dd');
$this->value = $this->valueObj->get('yyyy-MM-dd', $this->locale);
}
else {
$this->value = $val;
$this->valueObj = null;
}
}
}
/**
* @return String ISO 8601 date, suitable for insertion into database
*/
function dataValue() {
if($this->valueObj) {
return $this->valueObj->toString('yyyy-MM-dd');
} else {
return null;
}
}
}