Class TChoiceFormat
TChoiceFormat class.
This component performs message/string choice translation. The translation source is set in the TGlobalization module. The following example demonstrates a simple 2 choice message translation. The Choice has Value "1" (one), thus the translated string is "One Apple". If the Value is "2", then it will show "Two Apples". The message/string choices are separated by the pipe "|" followed by a set notation of the form - <tt>[1,2]</tt> -- accepts values between 1 and 2, inclusive.
- <tt>(1,2)</tt> -- accepts values between 1 and 2, excluding 1 and 2.
- <tt>{1,2,3,4}</tt> -- only values defined in the set are accepted.
- <tt>[-Inf,0)</tt> -- accepts value greater or equal to negative infinity
and strictly less than 0
Any non-empty combinations of the delimiters of square and round brackets are acceptable. The string choosen for display depends on the Value property. The Value is evaluated for each set until the Value is found to belong to a particular set. Properties - Value, float,
Gets or sets the Value that determines which string choice to display.
Since version 3.1.2 the following set notation is also possible. - <tt>{n: n % 10 > 1 && n % 10 < 5}</tt> -- matches numbers like 2, 3, 4, 22, 23, 24
Where set is defined by the expression after <tt>n:</tt>. In particular, the expression accepts the following mathematical/logical operators to form a set of logical conditions on the value given by <tt>n</tt>: - <tt><</tt> -- less than.
- <tt><=</tt> -- less than equals.
- <tt>></tt> -- greater than.
- <tt>>=</tt> -- greater than equals.
- <tt>==</tt> -- of equal value.
- <tt>%</tt> -- modulo, e.g., 1 % 10 equals 1, 11 % 10 equals 1.
- <tt>-</tt> -- minus, negative.
- <tt>+</tt> -- addition.
- <tt>&</tt> -- conditional AND.
- <tt>&&</tt> -- condition AND with short circuit.
- <tt>|</tt> -- conditional OR.
- <tt>||</tt> -- conditional OR with short circuit.
- <tt>!</tt> -- negation.
Additional round brackets can also be used to perform grouping.
Constants Inherited From TControl |
AUTOMATIC_ID_PREFIX,
CLIENT_ID_SEPARATOR,
CS_CHILD_INITIALIZED,
CS_CONSTRUCTED,
CS_INITIALIZED,
CS_LOADED,
CS_PRERENDERED,
CS_STATE_LOADED,
ID_FORMAT,
ID_SEPARATOR,
IS_CHILD_CREATED,
IS_CREATING_CHILD,
IS_DISABLE_THEMING,
IS_DISABLE_VIEWSTATE,
IS_ID_SET,
IS_SKIN_APPLIED,
IS_STYLESHEET_APPLIED,
RF_ADAPTER,
RF_AUTO_BINDINGS,
RF_CHILD_STATE,
RF_CONTROLS,
RF_CONTROLSTATE,
RF_DATA_BINDINGS,
RF_EVENTS,
RF_NAMED_CONTROLS,
RF_NAMED_CONTROLS_ID,
RF_NAMED_OBJECTS,
RF_SKIN_ID,
|
Method Summary |
float
|
|
void
|
Sets the numerical choice value
|
protected
void
|
Display the choosen translated string.
|
Methods Inherited From TTranslate |
TTranslate::getCatalogue(), TTranslate::getKey(), TTranslate::getParameter(), TTranslate::getParameters(), TTranslate::getText(), TTranslate::getTrim(), TTranslate::hasParameter(), TTranslate::removeParameter(), TTranslate::render(), TTranslate::setCatalogue(), TTranslate::setKey(), TTranslate::setParameter(), TTranslate::setText(), TTranslate::setTrim(), TTranslate::translateText()
|
Methods Inherited From TControl |
TControl::addedControl(), TControl::addParsedObject(), TControl::addToPostDataLoader(), TControl::applyStyleSheetSkin(), TControl::autoBindProperty(), TControl::autoDataBindProperties(), TControl::bindProperty(), TControl::broadcastEvent(), TControl::bubbleEvent(), TControl::clearChildState(), TControl::clearControlState(), TControl::clearNamingContainer(), TControl::clearViewState(), TControl::convertUniqueIdToClientId(), TControl::createChildControls(), TControl::createControlCollection(), TControl::dataBind(), TControl::dataBindChildren(), TControl::dataBindProperties(), TControl::ensureChildControls(), TControl::findControl(), TControl::findControlsByID(), TControl::findControlsByType(), TControl::focus(), TControl::getAdapter(), TControl::getAllowChildControls(), TControl::getAttribute(), TControl::getAttributes(), TControl::getChildControlsCreated(), TControl::getClientID(), TControl::getControls(), TControl::getControlStage(), TControl::getControlState(), TControl::getCustomData(), TControl::getEnabled(), TControl::getEnableTheming(), TControl::getEnableViewState(), TControl::getHasAdapter(), TControl::getHasAttributes(), TControl::getHasChildInitialized(), TControl::getHasControls(), TControl::getHasInitialized(), TControl::getHasLoaded(), TControl::getHasLoadedPostData(), TControl::getHasPreRendered(), TControl::getID(), TControl::getNamingContainer(), TControl::getPage(), TControl::getParent(), TControl::getRegisteredObject(), TControl::getSkinID(), TControl::getSourceTemplateControl(), TControl::getTemplateControl(), TControl::getUniqueID(), TControl::getViewState(), TControl::getVisible(), TControl::hasAttribute(), TControl::initRecursive(), TControl::isDescendentOf(), TControl::isObjectRegistered(), TControl::loadRecursive(), TControl::loadState(), TControl::loadStateRecursive(), TControl::onDataBinding(), TControl::onInit(), TControl::onLoad(), TControl::onPreRender(), TControl::onUnload(), TControl::preRenderRecursive(), TControl::raiseBubbleEvent(), TControl::registerObject(), TControl::removeAttribute(), TControl::removedControl(), TControl::render(), TControl::renderChildren(), TControl::renderControl(), TControl::saveState(), TControl::saveStateRecursive(), TControl::setAdapter(), TControl::setAttribute(), TControl::setChildControlsCreated(), TControl::setControlStage(), TControl::setControlState(), TControl::setCustomData(), TControl::setEnabled(), TControl::setEnableTheming(), TControl::setEnableViewState(), TControl::setID(), TControl::setPage(), TControl::setSkinID(), TControl::setTemplateControl(), TControl::setViewState(), TControl::setVisible(), TControl::trackViewState(), TControl::traverseChildControls(), TControl::unbindProperty(), TControl::unloadRecursive(), TControl::unregisterObject(), TControl::__get()
|
Methods Inherited From TComponent |
TComponent::addParsedObject(), TComponent::attachEventHandler(), TComponent::canGetProperty(), TComponent::canSetProperty(), TComponent::createdOnTemplate(), TComponent::detachEventHandler(), TComponent::evaluateExpression(), TComponent::evaluateStatements(), TComponent::getEventHandlers(), TComponent::getSubProperty(), TComponent::hasEvent(), TComponent::hasEventHandler(), TComponent::hasProperty(), TComponent::raiseEvent(), TComponent::setSubProperty(), TComponent::__get(), TComponent::__set()
|
Method Details |
getValue
Output |
float
| the numerical value. |
Exception |
|
setValue
public void setValue |
(float $value ) |
Sets the numerical choice value
Input |
float | $value | the choice value |
Output |
Exception |
|
translateText
protected void translateText |
(mixed $text , mixed $subs ) |
Display the choosen translated string.
Overrides the parent method, also calls parent's renderBody to translate.
Input |
mixed | $text | |
mixed | $subs | |
Output |
Exception |
|
|