Home
last modified time | relevance | path

Searched refs:resource (Results 1 – 25 of 428) sorted by last modified time

12345678910>>...18

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt904 resource before allowing calls to RenderToFile or
1107 existing GD image resource for thumbnailing
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock1183 "sebastian/resource-operations": "^3.0.3",
2305 "name": "sebastian/resource-operations",
2309 "url": "https://github.com/sebastianbergmann/resource-operations.git",
2314 "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
2346 "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
2348 "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
2349 "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs5546 …' <rdf:type rdf:resource="http://docs.oasis-open.org/ns/office/1.2/meta/' + (tag || "odf") + '#…
5553 …' <ns0:hasPart xmlns:ns0="http://docs.oasis-open.org/ns/office/1.2/meta/pkg#" rdf:resource="' +…
/plugin/gitbacked/lib/
H A DGit.php277 $resource = proc_open(Git::get_bin(), $descriptorspec, $pipes);
285 $status = trim(proc_close($resource));
325 $resource = proc_open($command, $descriptorspec, $pipes, $cwd, $env);
333 $status = trim(proc_close($resource));
/plugin/combo/ComboStrap/
H A DLowQualityCalculatedIndicator.php45 $resource = $this->getResource();
46 if (!($resource instanceof MarkupPath)) {
50 $analyticsDocument = $resource->fetchAnalyticsDocument();
H A DMetadataStoreTransfer.php46 * @param MarkupPath $resource
48 public function __construct(ResourceCombo $resource) argument
50 $this->page = $resource;
H A DPageId.php49 public static function createForPage(ResourceCombo $resource): PageId argument
52 ->setResource($resource);
102 $resource = $this->getResource();
103 if (!($resource instanceof MarkupPath)) {
109 if (!FileSystems::exists($resource->getPathObject())) {
121 $metadataFileSystemStore = MetadataDokuWikiStore::getOrCreateFromResource($resource);
132 $frontmatter = MetadataFrontmatterStore::createFromPage($resource);
145 $dbStore = MetadataDbStore::getOrCreateFromResource($resource);
164 * (because due to duplicate in canonical, the row returned may be from another resource)
166 $resourcePath = $resource
[all...]
H A DFeaturedIcon.php18 public static function createForPage(ResourceCombo $resource): FeaturedIcon argument
21 ->setResource($resource);
H A DFirstImage.php18 public static function createForPage(ResourceCombo $resource): FirstImage argument
21 ->setResource($resource);
H A DPageType.php101 $resource = $this->getResource();
102 if (!($resource instanceof MarkupPath)) {
106 if ($resource->isRootHomePage()) {
108 } else if ($resource->isIndexPage()) {
H A DFirstSvgIllustration.php21 public static function createForPage(ResourceCombo $resource): FirstSvgIllustration argument
24 ->setResource($resource);
H A DResourceName.php17 public static function createForResource(ResourceCombo $resource): ResourceName argument
20 ->setResource($resource);
H A DPageKeywords.php59 $resource = $this->getResource();
60 if (!($resource instanceof MarkupPath)) {
63 $keyWords = explode(" ", $resource->getNameOrDefault());
64 $parentPage = $resource;
H A DPageTitle.php61 $resource = $this->getResource();
62 if (!($resource instanceof MarkupPath)) {
64 return ResourceName::getFromPath($resource->getPathObject());
66 if ($resource->isRootHomePage() && !empty(Site::getTagLine())) {
H A DFirstRasterImage.php23 public static function createForPage(ResourceCombo $resource): FirstRasterImage argument
26 ->setResource($resource);
H A DPageUrlPath.php85 throw new ExceptionNotFound("The Url Path is not implemented for the resource type (" . $page->getType() . ")");
226 * Utility to change the type of the resource
231 $resource = $this->getResource();
232 if ($resource instanceof MarkupPath) {
233 return $resource;
H A DSlug.php15 public static function createForPage(ResourceCombo $resource) argument
18 ->setResource($resource);
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadata.php91 * The metadata is for this resource
92 * @var ResourceCombo $resource
94 private $resource; variable in ComboStrap\\Meta\\Api\\Metadata
272 * By default, this is the {@link ResourceCombo::getReadStoreOrDefault() default resource metadata store}
298 * Because the metadata is stored by resource, the persist function is
299 * also made available on the resource level
325 LogUtility::msg("The metadata store is unknown. You need to define a resource or a store to build from it");
361 * @return ResourceCombo - The resource
365 if ($this->resource !== null) {
366 return $this->resource;
379 setResource(ResourceCombo $resource) global() argument
[all...]
H A DMetadataStoreAbs.php42 * @param $resource
45 public static function toMetadataStore($readStore, $resource): MetadataStore argument
56 if ($resource === null) {
57 throw new ExceptionRuntime("The resource is null. You can't implement a store without a resource.");
59 return $readStore::getOrCreateFromResource($resource);
/plugin/combo/ComboStrap/Meta/Field/
H A DBacklinkCount.php61 $resource = $this->getResource();
62 if (!($resource instanceof MarkupPath)) {
63 LogUtility::msg("Backlink count is not yet supported on the resource type ({$resource->getType()}");
66 $backlinks = $resource->getBacklinks();
/plugin/combo/ComboStrap/Meta/Store/
H A DMetadataDbStore.php55 * @throws ExceptionNotExists - if the resource does not exist in the database
57 public function __construct(ResourceCombo $resource) argument
63 $this->resourceUidMeta = $resource->getUid();
69 $this->resourceUidMetaValue = MetadataDokuWikiStore::getOrCreateFromResource($resource)
72 parent::__construct($resource);
105 $resource = $metadata->getResource();
106 if (!($resource instanceof MarkupPath)) {
107 throw new ExceptionRuntime("The resource type ({$resource->getType()}) is not yet supported for the database metadata store", self::CANONICAL);
116 $pageMetaFromFileSystem = MarkupPath::createPageFromAbsoluteId($resource
[all...]
H A DMetadataDokuWikiStore.php143 $resource = $metadata->getResource();
144 $this->checkResource($resource);
145 if ($resource === null) {
146 throw new ExceptionBadState("A resource is mandatory", self::CANONICAL);
148 if (!($resource instanceof MarkupPath)) {
149 throw new ExceptionBadState("The DokuWiki metadata store is only for page resource", self::CANONICAL);
162 $resource = $metadata->getResource();
163 $this->checkResource($resource);
164 if ($resource === null) {
165 throw new ExceptionRuntime("A resource i
[all...]
/plugin/combo/vendor/symfony/polyfill-php80/
H A Dbootstrap.php41 function get_resource_id($resource): int { return p\Php80::get_resource_id($resource); } argument
/plugin/farmer/lang/en/
H A Dnotfound_404.txt3 The requested resource could not be found.

12345678910>>...18