本文整理匯總了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;
}
}