PHP Classes

File: engine/modules/core/message/message.qtags.inc

Recommend this page to a friend!
  Classes of Aldo Tripiciano   Quanta CMS   engine/modules/core/message/message.qtags.inc   Download  
File: engine/modules/core/message/message.qtags.inc
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Quanta CMS
Manage content that works without a database
Author: By
Last change:
Date: 5 years ago
Size: 421 bytes
 

Contents

Class file image Download
<?php /** * Implements qtag MESSAGES. * * Renders active system messages (errors, warnings, etc.). * * @param Environment $env * The Environment. * * @param string $target * The qtag's target. * * @param array $attributes * The qtag's attributes. * * @return string * The rendered qtag. */ function qtag_MESSAGES($env, $target, $attributes) { return Message::burnMessages(MESSAGE_TYPE_SCREEN); }