PHP Classes

File: system/dependencies/smarty/plugins/modifiercompiler.noprint.php

Recommend this page to a friend!
  Classes of Dimitri Sitchet   dFramework   system/dependencies/smarty/plugins/modifiercompiler.noprint.php   Download  
File: system/dependencies/smarty/plugins/modifiercompiler.noprint.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: dFramework
Framework to build PHP applications
Author: By
Last change:
Date: 4 years ago
Size: 340 bytes
 

Contents

Class file image Download
<?php
/**
 * Smarty plugin
 *
 * @package Smarty
 * @subpackage PluginsModifierCompiler
 */
/**
 * Smarty noprint modifier plugin
 * Type: modifier
 * Name: noprint
 * Purpose: return an empty string
 *
 * @author Uwe Tews
 * @return string with compiled code
 */
function smarty_modifiercompiler_noprint()
{
    return
"''";
}