0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: block.remarksbox.php
<?php // (c) Copyright 2002-2011 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: block.remarksbox.php 33195 2011-03-02 17:43:40Z changi67 $ /** * \brief Smarty {remarksbox}{/remarksbox} block handler (tip (default), comment, note or warning) * * To make a module it is enough to place smth like following * into corresponding mod-name.tpl file: * \code * {remarksbox type="tip|comment|note|warning|errors" title="Remark title" highlight="y|n" icon="id"} * <!-- module Smarty/HTML/Text here --> * {/remarksbox} * \endcode * * \params * - type "tip|comment|note|warning|errors|feedback|confirm default=tip * - title Text as a label. Leave out for no label (or icon) * - highlight "y|n" default=n * - icon Override default icons. See function.icon.php for more info * - close "y|n" default=y (close button) * - width e.g. "50%", "200px" default="" */ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER['SCRIPT_NAME'],basename(__FILE__)) !== false) { header('location: index.php'); exit; } function smarty_block_remarksbox($params, $content, &$smarty) { global $prefs; extract($params); if (!isset($type)) $type = 'tip'; if (!isset($title)) $title = ''; if (!isset($close)) $close = 'y'; if (!isset($width)) $width = ''; if (isset($highlight) && $highlight == 'y') { $highlightClass = ' highlight'; } else { $highlightClass = ''; } if (!isset($icon) || $icon=='') { if ($type=='tip') {//get_strings tra('tip') $icon='book_open'; } else if ($type=='comment') {//get_strings tra('comment') $icon='comments'; } else if ($type=='warning' || $type == 'confirm') {//get_strings tra('warning') tra('confirm') $icon='exclamation'; } else if ($type=='note') {//get_strings tra('note') $icon='information'; } else if ($type == 'errors') {//get_strings tra('errors') $icon = 'delete'; } else {//get_strings tra('information') $icon = 'information'; } } if ($prefs['javascript_enabled'] != 'y') { $close = false; } $smarty->assign('remarksbox_title', $title); $smarty->assign('remarksbox_type', $type); $smarty->assign('remarksbox_highlight', $highlightClass); $smarty->assign('remarksbox_icon', $icon); $smarty->assign('remarksbox_close', $close); $smarty->assign('remarksbox_width', $width); $smarty->assign_by_ref('remarksbox_content', $content); return $smarty->fetch('remarksbox.tpl'); }