作者:jirinapravni
项目:commo
/**
* @return bool
*/
public static function validateDate(IControl $control)
{
$year = $control->year;
$month = $control->month;
$day = $control->day;
if (!$control->isRequired() && $year === $month && $month === $day && $day === '') {
return TRUE;
} elseif ($year > 0 && $month > 0 && $day > 0) {
return checkdate($month, $day, $year);
} else {
return FALSE;
}
}
作者:newPOP
项目:web-addons.nette.or
/**
* @param \Nette\Forms\IControl
* @return bool
*/
public function isLicenseValid(IControl $control)
{
$licenses = $control->getValue();
if (is_string($licenses)) {
$licenses = array_map('trim', explode(',', $licenses));
}
foreach ($licenses as $license) {
if (!$this->validators->isLicenseValid($license)) {
return FALSE;
}
}
return TRUE;
}
作者:zaxx
项目:zaxcm
public static function validateData(Nette\Forms\IControl $control)
{
return strlen($control->code) && !is_int($control->code) && $control->isIcoValid($control->ico);
}
作者:soundak
项目:p
/**
* Is entered values within allowed range?
*
* @author Jan Tvrdík
* @param DatePicker
* @param array 0 => minDate, 1 => maxDate
* @return bool
*/
public static function validateRange(Nette\Forms\IControl $control, $range)
{
return ($range[0] === NULL || $control->getValue() >= $range[0]) && ($range[1] === NULL || $control->getValue() <= $range[1]);
}
作者:exese
项目:nette20logi
/**
* Filled validator: is control filled?
* @param Nette\Forms\IControl
* @return bool
*/
public static function validateFilled(IControl $control)
{
return $control->isFilled();
}
作者:radekdosta
项目:nette-datetimepicke
/**
* Validates range
*
* @param \Nette\Forms\IControl $control control
* @param array $range minimum and maximum dates and times
* @return bool
*/
public static function validateRange(IControl $control, $range)
{
if ($control->getValue() !== '') {
if ($control->range['min'] !== NULL) {
if ($control->getValue() < $control->range['min']) {
return FALSE;
}
}
if ($control->range['max'] !== NULL) {
if ($control->getValue() > $control->range['max']) {
return FALSE;
}
}
}
return TRUE;
}
作者:radeksimk
项目:nett
/**
* Rangle validator: is a control's value number in specified range?
* @param Nette\Forms\IControl
* @param array min and max value pair
* @return bool
*/
public static function validateRange(IControl $control, $range)
{
return Nette\Utils\Validators::isInRange($control->getValue(), $range);
}
作者:svobodn
项目:we
/**
* @param \Nette\Forms\IControl $control
* @param $name
* @return ManyToOne
*/
public function setDependOn(\Nette\Forms\IControl $control, $name = NULL)
{
$_this = $this;
$this->dependOn = array($control, $name ?: $control->name);
$this->criteria = array($name => -1);
$this->form->addSubmit($this->name . '_reload', 'reload')->setValidationScope(FALSE);
$control->form->onBeforeRender[] = function ($form) use($_this, $control) {
$control->getControlPrototype()->onChange = "\$('#frm{$form->name}-{$_this->name}_reload').click();";
};
$f = function ($form) use($_this, $control, $name) {
$_this->setCriteria(array($name => $control->value));
};
$control->form->onAttached[] = $f;
$control->form->onLoad[] = $f;
return $this;
}
作者:zaxx
项目:zaxcm
public static function validateData(Nette\Forms\IControl $control)
{
return checkdate((int) $control->month, (int) $control->day, (int) $control->year) && $control->validTime($control->hour, $control->minute);
}
作者:svobodn
项目:we
/**
* Filled validator: is control filled?
* @param IControl
* @return bool
*/
public static function validateFilled(IControl $control)
{
return count($control->getValue()) !== 0;
}
作者:zaxcm
项目:form
public static function negativeNumber(IControl $control)
{
return (int) $control->getValue() < 0;
}
作者:r-s
项目:foundation-form-rendere
/**
* Renders 'control' part of visual row of controls.
* @param \Nette\Forms\IControl $control
* @return string
*/
public function renderControl(\Nette\Forms\IControl $control)
{
if ($control instanceof \Nette\Forms\Controls\Checkbox) {
$html = $control->getLabelPrototype();
$caption = $html->getText();
$html->setHtml((string) $control->getControl() . " " . $caption);
return (string) $html;
}
return parent::renderControl($control);
}
作者:nell
项目:forms-phon
/**
* @param \Nette\Forms\IControl
* @return bool
*/
public function validatePhoneNumber(\Nette\Forms\IControl $control)
{
$value = $control->getHttpData(Form::DATA_LINE, '[' . static::NAME_PREFIX . ']');
$value .= $control->getHttpData(Form::DATA_LINE, '[' . static::NAME_NUMBER . ']');
return $this->validatePhoneNumberString($value);
}
作者:pavelplza
项目:ReCaptchaContro
/**
* @param Forms\IControl $control
* @return bool
*/
public static function validateValid(Forms\IControl $control)
{
$httpRequest = $control->getHttpRequest();
return $control->getReCaptcha()->validate($httpRequest->getRemoteAddress(), $httpRequest->getPost());
}
作者:jurasm
项目:multiplefileuploa
/**
* Filled validator: has been any file uploaded?
* @param Forms\IControl
* @return bool
*/
public static function validateFilled(Forms\IControl $control)
{
$files = $control->getValue();
return count($files) > 0;
}
作者:venca-
项目:tb3formrendere
/**
* Renders 'control' part of visual row of controls.
* @return string
*/
public function renderControl(Nette\Forms\IControl $control)
{
$body = $this->getWrapper('control container');
if ($this->counter % 2) {
$body->class($this->getValue('control .odd'), TRUE);
}
$description = $control->getOption('description');
if ($description instanceof Html) {
$description = ' ' . $description;
} elseif (is_string($description)) {
$description = ' ' . $this->getWrapper('control description')->setText($control->translate($description));
} else {
$description = '';
}
if ($control->isRequired()) {
$description = $this->getValue('control requiredsuffix') . $description;
}
$el = $control->getControl();
if ($control instanceof Nette\Forms\Controls\TextInput || $control instanceof Nette\Forms\Controls\TextArea || $control instanceof Nette\Forms\Controls\SelectBox || $control instanceof Nette\Forms\Controls\MultiSelectBox) {
$el->class($this->getValue("control form-control"), TRUE);
}
if ($control instanceof Nette\Forms\Controls\Checkbox) {
//$el = $control->getLabel()->insert(0, $el);//reapair in NF 2.1RC3
$elTemp = $el;
$el = Html::el('div', array("class" => $this->getValue("pair containerCheckbox")));
$el->setHtml($elTemp);
}
if ($this->isFormHorizontal() && $control instanceof Nette\Forms\Controls\Checkbox) {
$div = Html::el('div', array("class" => $this->getValue("control col-offset")));
} else {
if ($this->isFormHorizontal()) {
$div = Html::el('div', array("class" => $this->getValue("control col")));
} else {
$div = Html::el();
}
}
$div->setHtml($el . $description . $this->renderErrors($control));
return $body->addHtml($div);
}
作者:zaxcm
项目:framewor
public static function validateData(Nette\Forms\IControl $control)
{
return $control->validDate($control->year, $control->month, $control->day) && $control->validTime($control->hour, $control->minute);
}
作者:instant
项目:bootstrap3rendere
/**
* @param IControl $control
* @param string $key
* @return Html
*/
public function renderSingleControl(IControl $control, $key)
{
/** @noinspection PhpUndefinedMethodInspection */
return $control->getControlPart($key);
}
作者:impala2
项目:nette-forms-gpspicke
public static function validateMinDistanceFrom(IControl $control, array $args)
{
list($distance, $point) = $args;
return $control->getValue()->getDistanceTo(new GpsPoint($point)) >= $distance;
}
作者:baz
项目:translation-u
/**
* Filled validator: has been any checkbox checked?
*
* @param \Nette\Forms\IControl $control
* @return bool
*/
public static function validateChecked(Nette\Forms\IControl $control)
{
return $control->getValue() !== NULL;
}