218 lines
4.8 KiB
PHP
218 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace FML\Controls;
|
|
|
|
use FML\Script\Features\EntrySubmit;
|
|
use FML\Types\NewLineable;
|
|
use FML\Types\Scriptable;
|
|
use FML\Types\Styleable;
|
|
use FML\Types\TextFormatable;
|
|
|
|
/**
|
|
* Entry Control
|
|
* (CMlEntry)
|
|
*
|
|
* @author steeffeen <mail@steeffeen.com>
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class Entry extends Control implements NewLineable, Scriptable, Styleable, TextFormatable {
|
|
/*
|
|
* Protected properties
|
|
*/
|
|
protected $tagName = 'entry';
|
|
protected $name = null;
|
|
protected $default = null;
|
|
protected $autoNewLine = null;
|
|
protected $scriptEvents = null;
|
|
protected $style = null;
|
|
protected $textColor = null;
|
|
protected $textSize = -1;
|
|
protected $textFont = null;
|
|
protected $focusAreaColor1 = null;
|
|
protected $focusAreaColor2 = null;
|
|
protected $autoComplete = null;
|
|
|
|
/**
|
|
* @see \FML\Controls\Control::getManiaScriptClass()
|
|
*/
|
|
public function getManiaScriptClass() {
|
|
return 'CMlEntry';
|
|
}
|
|
|
|
/**
|
|
* Get the Entry name
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName() {
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Set Entry name
|
|
*
|
|
* @param string $name Entry name
|
|
* @return static
|
|
*/
|
|
public function setName($name) {
|
|
$this->name = (string)$name;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get the default value
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getDefault() {
|
|
return $this->default;
|
|
}
|
|
|
|
/**
|
|
* Set default value
|
|
*
|
|
* @param string $default Default value
|
|
* @return static
|
|
*/
|
|
public function setDefault($default) {
|
|
$this->default = $default;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\NewLineable::setAutoNewLine()
|
|
*/
|
|
public function setAutoNewLine($autoNewLine) {
|
|
$this->autoNewLine = ($autoNewLine ? 1 : 0);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\Scriptable::setScriptEvents()
|
|
*/
|
|
public function setScriptEvents($scriptEvents) {
|
|
$this->scriptEvents = ($scriptEvents ? 1 : 0);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\Styleable::setStyle()
|
|
*/
|
|
public function setStyle($style) {
|
|
$this->style = (string)$style;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\TextFormatable::setTextColor()
|
|
*/
|
|
public function setTextColor($textColor) {
|
|
$this->textColor = (string)$textColor;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\TextFormatable::setTextSize()
|
|
*/
|
|
public function setTextSize($textSize) {
|
|
$this->textSize = (int)$textSize;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\TextFormatable::setTextFont()
|
|
*/
|
|
public function setTextFont($textFont) {
|
|
$this->textFont = (string)$textFont;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\TextFormatable::setAreaColor()
|
|
*/
|
|
public function setAreaColor($areaColor) {
|
|
$this->focusAreaColor1 = (string)$areaColor;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\TextFormatable::setAreaFocusColor()
|
|
*/
|
|
public function setAreaFocusColor($areaFocusColor) {
|
|
$this->focusAreaColor2 = (string)$areaFocusColor;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Set auto completion
|
|
*
|
|
* @param bool $autoComplete Whether the default value should be automatically completed based on the current request parameters
|
|
* @return static
|
|
*/
|
|
public function setAutoComplete($autoComplete) {
|
|
$this->autoComplete = (bool)$autoComplete;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Add a dynamic Feature submitting the Entry
|
|
*
|
|
* @param string $url Submit url
|
|
* @return static
|
|
*/
|
|
public function addSubmitFeature($url) {
|
|
$entrySubmit = new EntrySubmit($this, $url);
|
|
$this->addScriptFeature($entrySubmit);
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see \FML\Types\Renderable::render()
|
|
*/
|
|
public function render(\DOMDocument $domDocument) {
|
|
$xmlElement = parent::render($domDocument);
|
|
if ($this->name) {
|
|
$xmlElement->setAttribute('name', $this->name);
|
|
}
|
|
if (!is_null($this->default)) {
|
|
$xmlElement->setAttribute('default', $this->default);
|
|
} else if ($this->autoComplete) {
|
|
$value = null;
|
|
if (array_key_exists($this->name, $_GET)) {
|
|
$value = $_GET[$this->name];
|
|
} else if (array_key_exists($this->name, $_POST)) {
|
|
$value = $_POST[$this->name];
|
|
}
|
|
if ($value) {
|
|
$xmlElement->setAttribute('default', $value);
|
|
}
|
|
}
|
|
if ($this->autoNewLine) {
|
|
$xmlElement->setAttribute('autonewline', $this->autoNewLine);
|
|
}
|
|
if ($this->scriptEvents) {
|
|
$xmlElement->setAttribute('scriptevents', $this->scriptEvents);
|
|
}
|
|
if ($this->style) {
|
|
$xmlElement->setAttribute('style', $this->style);
|
|
}
|
|
if ($this->textColor) {
|
|
$xmlElement->setAttribute('textcolor', $this->textColor);
|
|
}
|
|
if ($this->textSize >= 0.) {
|
|
$xmlElement->setAttribute('textsize', $this->textSize);
|
|
}
|
|
if ($this->textFont) {
|
|
$xmlElement->setAttribute('textfont', $this->textFont);
|
|
}
|
|
if ($this->focusAreaColor1) {
|
|
$xmlElement->setAttribute('focusareacolor1', $this->focusAreaColor1);
|
|
}
|
|
if ($this->focusAreaColor2) {
|
|
$xmlElement->setAttribute('focusareacolor2', $this->focusAreaColor2);
|
|
}
|
|
return $xmlElement;
|
|
}
|
|
}
|