Page MenuHomeWMGMC Issues

ConduitBoolParameterType.php
No OneTemporary

ConduitBoolParameterType.php

<?php
final class ConduitBoolParameterType
extends ConduitParameterType {
protected function getParameterValue(array $request, $key, $strict) {
$value = parent::getParameterValue($request, $key, $strict);
return $this->parseBoolValue($request, $key, $value, $strict);
}
protected function getParameterTypeName() {
return 'bool';
}
protected function getParameterFormatDescriptions() {
return array(
pht('A boolean.'),
);
}
protected function getParameterExamples() {
return array(
'true',
'false',
);
}
}

File Metadata

Mime Type
text/x-php
Expires
9月 11 Thu, 1:32 PM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5493
默认替代文本
ConduitBoolParameterType.php (575 B)

Event Timeline