Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

TemplateCheck.php

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 718.00 Bytes


01  <?php
02   
03  /**
04  * @package   s9e\TextFormatter
05  * @copyright Copyright (c) 2010-2022 The s9e authors
06  * @license   http://www.opensource.org/licenses/mit-license.php The MIT License
07  */
08  namespace s9e\TextFormatter\Configurator;
09   
10  use DOMElement;
11  use s9e\TextFormatter\Configurator\Items\Tag;
12   
13  /**
14  * @codeCoverageIgnore
15  */
16  abstract class TemplateCheck
17  {
18      /**
19      * XSL namespace
20      */
21      const XMLNS_XSL = 'http://www.w3.org/1999/XSL/Transform';
22   
23      /**
24      * Check a template for infractions to this check and throw any relevant Exception
25      *
26      * @param  DOMElement $template <xsl:template/> node
27      * @param  Tag     $tag      Tag this template belongs to
28      * @return void
29      */
30      abstract public function check(DOMElement $template, Tag $tag);
31  }