Home
last modified time | relevance | path

Searched refs:targetId (Results 1 – 4 of 4) sorted by relevance

/template/strap/ComboStrap/TagAttribute/
H A DToggle.php106 $targetId = $attributes->getValueAndRemoveIfPresent($collapse);
108 $targetId = $attributes->getValueAndRemoveIfPresent("collapse");
110 if ($targetId != null) {
118 if (substr($targetId, 0, 1) != "#") {
119 $targetId = "#" . $targetId;
122 $attributes->addOutputAttributeValue("data-{$bootstrapNamespace}target", $targetId);
/template/strap/syntax/
H A Dtoggle.php153 $targetId = $tagAttributes->getValueAndRemoveIfPresent("target-id");
154 if ($targetId === null) {
177 if (substr($targetId, 0, 1) != "#") {
178 $targetId = "#" . $targetId;
181 … $tagAttributes->addComponentAttributeValue("data-{$bootstrapNamespace}target", $targetId);
200 $targetLabel = "Toggle $targetId";
/template/strap/action/
H A Dlinkmove.php137 $targetId = $event->data["dst_id"];
150 $databasePage->updatePathAndDokuwikiId($targetId);
184 $targetId = $event->data["dst_id"];
191 $databasePage = DatabasePageRow::getFromDokuWikiId($targetId);
193 …LogUtility::warning("The target database row with the id ($targetId) was not found in the database…
200 $targetPage = MarkupPath::createMarkupFromId($targetId);
/template/strap/ComboStrap/
H A DDatabasePageRow.php736 function updatePathAndDokuwikiId($targetId) argument
739 …LogUtility::error("The `database` page ($this) does not exist and cannot be moved to ($targetId)");
742 $path = $targetId;
745 DokuwikiId::DOKUWIKI_ID_ATTRIBUTE => $targetId,