Home
last modified time | relevance | path

Searched refs:sourcePath (Results 1 – 25 of 32) sorted by last modified time

12

/plugin/openlayersmap/ol7/
H A Dgenerate-info.js.diff
/plugin/combo/ComboStrap/
H A DLazyLoad.php252 $sourcePath = ExecutionContext::getActualOrCreateFromEnv()
255 if(SlotSystem::isMainHeaderSlot($sourcePath)){
H A DFetcherMarkupBuilder.php61 public static function getWikiIdAndLocalFileDokuwikiCompliant(Path $sourcePath): array argument
65 $markuSourceWikiPath = $sourcePath->toWikiPath();
79 $wikiId = $sourcePath->toAbsoluteId();
81 $localFile = $sourcePath->toLocalPath();
83 throw new ExceptionRuntimeInternal("The source path ({$sourcePath}) is not supported as markup source path.", $e);
H A DFetcherPage.php357 $sourcePath = $this->getSourcePath();
358 return ResourceName::getFromPath($sourcePath);
H A DFetcherRawLocalPath.php100 $sourcePath = $this->getSourcePath();
101 return ResourceName::getFromPath($sourcePath);
H A DCacheReportHtmlDataBlockArray.php49 $sourcePath = $result->getMarkupPath()->getPathObject();
54 if (!($sourcePath instanceof WikiPath)) {
56 $sourcePath = WikiPath::createFromPathObject($sourcePath);
77 $dependencies = FetcherMarkup::createXhtmlMarkupFetcherFromPath($sourcePath, $sourcePath)
86 $htmlDataBlock[$sourcePath->toAbsoluteId()][$mode] = $data;
H A DFetcherMarkup.php812 $sourcePath = $this->getSourcePath();
816 return ResourceName::getFromPath($sourcePath);
1088 $sourcePath = $this->getSourcePath();
1093 return FileSystems::getContent($sourcePath);
1095 LogUtility::error("The path ($sourcePath) does not exist, we have set the markup to the empty string during rendering. If you want to delete the cache path, ask it via the cache path function", self::CANONICAL, $e);
H A DIFetcherLocalImage.php74 $sourcePath = $this->getSourcePath();
75 return ResourceName::getFromPath($sourcePath);
H A DSlotSystem.php123 public static function isMainHeaderSlot(Path $sourcePath): bool argument
126 $nameWithoutExtension = $sourcePath->getLastNameWithoutExtension();
/plugin/davcal/vendor/sabre/dav/lib/DAV/FSExt/
H A DDirectory.php198 * @param string $sourcePath Full path to source node
202 function moveInto($targetName, $sourcePath, DAV\INode $sourceNode) { argument
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DIMoveTarget.php38 * @param string $sourcePath Full path to source node
42 function moveInto($targetName, $sourcePath, INode $sourceNode); argument
H A DTree.php118 * @param string $sourcePath The source location
122 function copy($sourcePath, $destinationPath) { argument
124 $sourceNode = $this->getNodeForPath($sourcePath);
139 * @param string $sourcePath The path to the file which should be moved
143 function move($sourcePath, $destinationPath) { argument
145 list($sourceDir) = URLUtil::splitPath($sourcePath);
150 $sourceNode = $this->getNodeForPath($sourcePath);
157 $sourceNode = $this->getNodeForPath($sourcePath);
158 $moveSuccess = $newParentNode->moveInto($destinationName, $sourcePath, $sourceNode);
161 $this->copy($sourcePath, $destinationPath);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
H A DConfigManagementErrorResource.php35 public $sourcePath; variable in Google\\Service\\GKEHub\\ConfigManagementErrorResource
82 public function setSourcePath($sourcePath) argument
84 $this->sourcePath = $sourcePath;
91 return $this->sourcePath;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Recommender/
H A DGoogleCloudRecommenderV1Operation.php47 public $sourcePath; variable in Google\\Service\\Recommender\\GoogleCloudRecommenderV1Operation
146 public function setSourcePath($sourcePath) argument
148 $this->sourcePath = $sourcePath;
155 return $this->sourcePath;
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js30338 sourcePath = source && graphicsFactory.getShapePath(source),
30342 start = (source && getElementLineIntersection(sourcePath, connectionPath, true)) || start;
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DIMoveTarget.php38 * @param string $sourcePath Full path to source node
42 function moveInto($targetName, $sourcePath, INode $sourceNode); argument
H A DTree.php118 * @param string $sourcePath The source location
122 function copy($sourcePath, $destinationPath) { argument
124 $sourceNode = $this->getNodeForPath($sourcePath);
139 * @param string $sourcePath The path to the file which should be moved
143 function move($sourcePath, $destinationPath) { argument
145 list($sourceDir) = URLUtil::splitPath($sourcePath);
150 $sourceNode = $this->getNodeForPath($sourcePath);
157 $sourceNode = $this->getNodeForPath($sourcePath);
158 $moveSuccess = $newParentNode->moveInto($destinationName, $sourcePath, $sourceNode);
161 $this->copy($sourcePath, $destinationPath);
[all …]
/plugin/webdav/vendor/sabre/dav/lib/DAV/FSExt/
H A DDirectory.php190 * @param string $sourcePath Full path to source node
194 function moveInto($targetName, $sourcePath, DAV\INode $sourceNode) { argument
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Process/
H A DRequireCssProcess.php56 $sourcePath = $package . '/' . $style;
60 $sourcePath = str_replace($filename, basename($assetPath), $sourcePath);
65 $asset = new FileAsset($assetPath, $filterCollection, $sourceRoot, $sourcePath);
69 $sourcePath = preg_replace('{^.*'.preg_quote($package).'/}', '', $sourcePath);
70 $asset = new FileAsset($assetPath, $filterCollection, $sourceRoot, $sourcePath);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DFileAsset.php32 * @param string $sourcePath The source asset path
37 …public function __construct($source, $filters = array(), $sourceRoot = null, $sourcePath = null, a… argument
41 if (null === $sourcePath) {
42 $sourcePath = basename($source);
44 } elseif (null === $sourcePath) {
49 $sourcePath = substr($source, strlen($sourceRoot) + 1);
54 parent::__construct($filters, $sourceRoot, $sourcePath, $vars);
H A DStringAsset.php32 * @param string $sourcePath The source asset path
34 … public function __construct($content, $filters = array(), $sourceRoot = null, $sourcePath = null) argument
38 parent::__construct($filters, $sourceRoot, $sourcePath);
H A DBaseAsset.php29 private $sourcePath; variable in Assetic\\Asset\\BaseAsset
42 * @param string $sourcePath The asset path
45 …public function __construct($filters = array(), $sourceRoot = null, $sourcePath = null, array $var… argument
49 $this->sourcePath = $sourcePath;
50 if ($sourcePath && $sourceRoot) {
51 $this->sourceDir = dirname("$sourceRoot/$sourcePath");
134 return $this->sourcePath;
169 …n(sprintf('The asset with source path "%s" has no variable named "%s".', $this->sourcePath, $var));
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DHandlebarsFilter.php54 if ($sourcePath = $asset->getSourcePath()) {
55 $templateName = basename($sourcePath);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/
H A DAssetCollectionFilterIterator.php64 $sourcePath = $asset->getSourcePath();
65 if ($sourceRoot && $sourcePath) {
66 $source = $sourceRoot.'/'.$sourcePath;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/
H A DCacheBustingWorker.php63 $sourcePath = $leaf->getSourcePath();
64 hash_update($hash, $sourcePath ?: $i);

12