Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

unregister_modifier (Modifikator deaktivieren)

void unregister_modifier(string name);

Wird verwendet, um registrierte Variablen-Modifikatoren auszuschalten. Übergeben Sie dazu den Modifikator-Namen.

Example 13.26. unregister_modifier


<?php
// Verhindern, dass Template-Designer 'strip_tags' anwenden

$smarty->unregister_modifier("strip_tags");
?>