本文整理汇总了PHP中Parameter::wasSetToDefault方法的典型用法代码示例。如果您正苦于以下问题:PHP Parameter::wasSetToDefault方法的具体用法?PHP Parameter::wasSetToDefault怎么用?PHP Parameter::wasSetToDefault使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Parameter
的用法示例。
在下文中一共展示了Parameter::wasSetToDefault方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doManipulation
/**
* @see ItemParameterManipulation::doManipulation
*
* @since 0.4
*/
public function doManipulation(&$value, Parameter $parameter, array &$parameters)
{
// When the value defaulted to a boolean, there is no need for this manipulation.
if (!is_bool($value) || !$parameter->wasSetToDefault()) {
$value = in_array($value, array('yes', 'on'));
}
}
示例2: doManipulation
/**
* @see ItemParameterManipulation::doManipulation
*
* @since 0.7.5
*/
public function doManipulation(&$value, Parameter $parameter, array &$parameters)
{
global $egMapsDefaultGeoService;
static $validatedDefault = false;
if (!MapsGeocoders::canGeocode()) {
throw new MWException('There are no geocoders registered, so no geocoding can happen.');
}
// Get rid of any aliases.
$value = $this->getMainIndentifier($value);
// Override the defaulting.
if ($parameter->wasSetToDefault() && is_string($this->mappingServiceParam) && array_key_exists($this->mappingServiceParam, $parameters)) {
$value = self::resolveOverrides($value, $parameters[$this->mappingServiceParam]->getValue());
}
if ($value === '' || !array_key_exists($value, MapsGeocoders::$registeredGeocoders)) {
if (!$validatedDefault) {
if (!array_key_exists($egMapsDefaultGeoService, MapsGeocoders::$registeredGeocoders)) {
$geoServices = array_keys(MapsGeocoders::$registeredGeocoders);
$egMapsDefaultGeoService = array_shift($geoServices);
if (is_null($egMapsDefaultGeoService)) {
throw new MWException('Tried to geocode while there are no geocoders available at ' . __METHOD__);
}
}
}
if (array_key_exists($egMapsDefaultGeoService, MapsGeocoders::$registeredGeocoders)) {
$value = $egMapsDefaultGeoService;
} else {
throw new MWException('Attempt to use the default geocoder while it does not exist.');
}
}
}
示例3: doManipulation
/**
* @see ItemParameterManipulation::doManipulation
*
* @since 0.7
*/
public function doManipulation(&$value, Parameter $parameter, array &$parameters)
{
// If there are multiple points and the value was not provided or incorrect (=defaulted),
// set it to false, so the mapping service can figure out the optimal value.
if ($parameter->wasSetToDefault() && count($parameters['coordinates']->getValue()) > 1) {
$value = false;
}
}