Extension:PhpTags/pl
To rozszerzenie nie jest aktualnie aktywnie rozwijane! Pomimo, że może nadal działać, jakiekolwiek zgłoszenia błędów lub propozycji funkcji będą najprawdopodobniej ignorowane. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Rozszerzenie }} infobox. |
PhpTags Status wydania: niewspierane |
|
---|---|
Realizacja | Znaczniki , Funkcja parsera , Hak |
Opis | Allows users to use the Magic expressions with PHP language syntax |
Autor(zy) | Pavel Astakhov (pastakhovdyskusja) |
Ostatnia wersja | 5.5.0 (2015-11-20) |
MediaWiki | 1.25+ |
PHP | 5.3+ |
Licencja | Licencja GNU General Public License 2.0 lub nowsza |
Pobieranie | |
|
|
phptag |
|
Quarterly downloads | 0 |
Przetłumacz rozszerzenie PhpTags jeżeli jest dostępne na translatewiki.net | |
Problemy | Otwarte zadania · Zgłoś błąd |
The PhpTags extension implements the concept of Magic expressions with PHP language syntax that allows you to create and use compatible but not monolithic MediaWiki extensions, which greatly increases the convenience, flexibility and performance. More ...
Opis
The PhpTags extension has its own the runtime environment PHP code which supports scalar types, arrays, variables, operators, control structures. It also supports constants, functions and objects but it does not implement any of them except for some language constructs.
When using a function, object or constant PhpTags calls corresponding extension. Therefore, a set of constants, functions, objects and actions that they produce only depend on additionally installed compatible extensions which can be found here.
PhpTags designed so to be as similar to native PHP, therefore you should have the illusion of direct execution PHP code although this never happens.
Użycie
Kod powinien być umieszczony pomiędzy znacznikami <phptag>
a </phptag>
. Może być obecny w dowolnej przestrzeni nazw, jeśli zezwala na to zmienna $wgPhpTagsNamespaces
.
<phptag>
$foo = 'hello world';
echo ucfirst( $foo . "!!!\n" );
</phptag>
Powyższy kod wyświetli:
Hello world!!!
ucfirst
is implemented in Extension:PhpTags_Functions . More details can be found in the quick start guide.
Instalacja
- Pobierz i umieść plik(i) w katalogu o nazwie
PhpTags
w folderzeextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/PhpTags - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'PhpTags' );
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Instalacja Vagranta:
- Jeżeli korzystasz z Vagrant a, zainstaluj poprzez
vagrant roles enable phptags --provision
Opcjonalna instalacja
- CodeMirror extension provides code highlighting in article editor
Dodatkowa instalacja
The PhpTags extension (core) implements magic expressions only and not, for instance, any PHP function.
For additional features such as functions, you can install additional extensions which are compatible with the magic expressions of the PhpTags extension.
Najważniejsze z nich to:
- Extension:PhpTags Wiki - lets you query various data from MediaWiki core
- Extension:PhpTags Functions - contains many functions for data processing
- Extension:PhpTags Widgets - displays the data in different ways
Others are Extension:PhpTags SMW and Extension:PhpTags Storage .
Parametry konfiguracyjne
Nazwa | Opis | Domyślnie |
---|---|---|
$wgPhpTagsMaxLoops | Maximum number of allowed loops | 1000 |
$wgPhpTagsNamespaces | Array of namespaces in which the PhpTags extension is allowed to use. Boolean true allows usage in all namespaces
|
true
|
$wgPhpTagsBytecodeExptime | Storage time of the compiled bytecode in cache (30 days) | 2592000 (30 dni) |