Home
last modified time | relevance | path

Searched refs:null (Results 1001 – 1025 of 5084) sorted by path

1...<<41424344454647484950>>...204

/plugin/combo/ComboStrap/
H A DMarkupCacheDependencies.php106 private $runtimeAddedDependencies = null;
130 if ($executingPath !== null) {
165 if ($slot === null) {
255 if ($this->firstActualKey === null) {
290 if ($this->runtimeAddedDependencies !== null) {
293 if ($this->runtimeStoreDependencies === null) {
363 if ($deps !== null) {
377 if ($this->dependenciesCacheStore !== null) {
H A DMarkupFileSystem.php53 * @param string|null $type
56 public function getChildren(Path $path, string $type = null): array
H A DMarkupPath.php351 * (refresh from disk, reset object to null)
357 $this->readStore = null;
364 * @return MarkupPath[]|null the internal links or null
371 return null;
374 if ($metadata === null) {
378 return null;
381 return null;
466 // We were returning null but null use
[all...]
H A DMarkupRef.php64 private ?Url $url = null;
66 private ?Path $path = null;
67 private ?InterWiki $interWiki = null;
237 $fragment = null;
238 $queryStringAndAnchorOriginal = null;
276 if ($queryStringAndAnchorOriginal !== null) {
288 $rev = null;
299 if ($fragment !== null) {
337 if ($fragment !== null) {
454 if ($this->path === null) {
[all...]
H A DMarkupRenderUtility.php84 * @return string|null
87 public static function renderInstructionsToXhtml($callStackHeaderInstructions, array $contextData = null): string
94 if ($contextData !== null) {
H A DMarkupRenderer.php38 * May be null (ie markup rendering without any context such as webcode)
52 * @param Path|null $executingPath - the source of the markup - may be null (case of webcode)
53 * @param WikiPath|null $contextPath - the requested markup path - may be null (case of webcode)
60 if ($executingPath != null) {
63 if ($contextPath != null) {
137 $executingPath = null;
142 $contextPath = null;
156 $this->cacheAfterRendering = $info['cache'] !== null
[all...]
H A DMediaMarkup.php100 private ?string $align = null;
101 private ?string $label = null;
102 private ?MarkupRef $markupRef = null;
103 private ?string $linking = null;
104 private ?string $lazyLoadMethod = null;
106 private ?string $linkingClass = null;
152 if ($ref === null) {
154 if ($ref === null) {
186 $display = $callStackArray[Display::DISPLAY] ?? null;
240 $title = null;
[all...]
H A DMessage.php43 public static function createInfoMessage($plainText = null): Message
46 if ($plainText !== null) {
52 public static function createWarningMessage($plainText = null): Message
55 if ($plainText !== null) {
75 if ($plainText !== null) {
103 function getContent($mime = null): string
105 if ($mime != null) {
119 if ($plainTextLines === null) {
120 return null;
152 if ($this->class !== null) {
[all...]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadata.php116 * @var Metadata|null - the parent with runtime metadata
125 public function __construct(Metadata $parent = null)
135 if ($this->parent === null) {
152 * @return array|mixed|string|null
153 * Store value may returns null as they may be stored
161 if ($value !== null) {
252 * If the value is null, the {@link Metadata::buildFromReadStore()} will be performed
259 * If the {@link Metadata::getValue()} is null and if the object was not already build
324 if ($metadataStore === null) {
365 if ($this->resource !== null) {
[all...]
H A DMetadataBoolean.php23 * @var bool|null
39 if ($this->value === null) {
47 * @param null|boolean $value
52 if ($value === null) {
53 $this->value = null;
77 return null;
86 * @return bool|string|null
95 return null;
129 return $this->value !== null;
H A DMetadataDateTime.php22 * @var DateTime|null
23 * may be null as this is a stored value
24 * but throw a not found exception when the value is null
26 protected ?DateTime $dateTimeValue = null;
40 return null;
51 * @param DateTime|null $value
56 if ($value === null) {
57 $this->dateTimeValue = null;
82 return null;
89 return null;
[all...]
H A DMetadataInteger.php34 return $this->value !== null;
57 if ($value === null || $value === "") {
58 $this->value = null;
H A DMetadataJson.php59 if ($value === null) {
61 return null;
H A DMetadataMultiple.php28 * @var array|null
30 protected ?array $array = null;
34 * @param null|array $value
40 if ($value === null) {
59 if ($this->array === null) {
85 return $this->array !== null;
91 if ($this->array === null) {
92 return null;
102 return null;
122 if ($values === null) {
[all...]
H A DMetadataStore.php39 * @param null $default - the default value to return if no data is found
41 public function get(Metadata $metadata, $default = null);
49 * @param null $default - the default value to return if no data is found
50 * @return null|string|array|boolean
52 public function getFromName(string $name, $default = null);
57 * @param null|string|array|boolean $value - the value
58 * @param null $default - if the value is equals to the default, the data will not be stored
60 public function setFromPersistentName(string $name, $value, $default = null);
H A DMetadataStoreAbs.php56 if ($resource === null) {
57 throw new ExceptionRuntime("The resource is null. You can't implement a store without a resource.");
H A DMetadataSystem.php155 * @param Metadata|null $parent
159 public static function toMetadataObject($class, Metadata $parent = null): Metadata
189 $metadataClass = self::METADATAS[$name] ?? null;
190 if ($metadataClass !== null) {
H A DMetadataTabular.php44 protected ?array $rows = null;
55 if ($this->rows === null) {
63 if ($value === null) {
84 if ($this->rows === null) {
85 return null;
105 return null;
119 if ($value === null) {
184 if ($identifierValues === null || $identifierValues === "") {
255 $idValue = null;
257 $childClass = $childClassesByPersistentName[$colName] ?? null;
[all...]
H A DMetadataText.php21 * @var string|null
35 * null or empty string is considered not found
37 if ($this->value === null || trim($this->value) === "") {
45 return $this->value !== null;
50 * @param null|string $value
56 if ($value !== null && !is_string($value)) {
63 * form don't return null only empty string
64 * equivalent to null
69 if ($possibleValues !== null) {
90 $this->value = null;
[all...]
H A DMetadataWikiPath.php49 * @param WikiPath|string|null $value
54 if ($value === null) {
83 return null;
101 return null;
108 if ($value === null || trim($value) === "") {
/plugin/combo/ComboStrap/Meta/Field/
H A DAliases.php40 * @return Alias[]|null
56 $aliasType = $row[AliasType::getPersistentName()] ?? null;
57 if ($aliasType !== null) {
72 * @param array|null $aliasesPersistentValues
77 if ($aliasesPersistentValues === null) {
119 * @return null|array - the array to be saved in a text/json file
123 if ($aliases === null) {
124 return null;
250 $this->getReadStore() !== null
273 function addAlias(string $aliasPath, $aliasType = null)
[all...]
H A DFacebookImage.php54 if ($value === null) {
H A DFeaturedRasterImage.php56 if ($value === null) {
96 public function setParsedValue(string $path = null): FeaturedRasterImage
132 if ($parsedValue === null) {
H A DFeaturedSvgImage.php52 public function setParsedValue(string $path = null): FeaturedSvgImage
68 if ($parsedValue === null) {
H A DPageImage.php84 if ($this->usages === null) {

1...<<41424344454647484950>>...204