Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

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

reparser_interface.php

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 874.00 Bytes


01  <?php
02  /**
03  *
04  * This file is part of the phpBB Forum Software package.
05  *
06  * @copyright (c) phpBB Limited <https://www.phpbb.com>
07  * @license GNU General Public License, version 2 (GPL-2.0)
08  *
09  * For full copyright and license information, please see
10  * the docs/CREDITS.txt file.
11  *
12  */
13   
14  namespace phpbb\textreparser;
15   
16  interface reparser_interface
17  {
18      /**
19      * Return the highest ID for all existing records
20      *
21      * @return integer
22      */
23      public function get_max_id();
24   
25      /**
26       * Returns the name of the reparser
27       *
28       * @return string Name of reparser
29       */
30      public function get_name();
31   
32      /**
33       * Sets the name of the reparser
34       *
35       * @param string $name The reparser name
36       */
37      public function set_name($name);
38   
39      /**
40      * Reparse all records in given range
41      *
42      * @param integer $min_id Lower bound
43      * @param integer $max_id Upper bound
44      */
45      public function reparse_range($min_id, $max_id);
46  }
47