This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/includes/smarty/plugins/function.style_hide.php

17 lines
451 B
PHP
Raw Normal View History

<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* File: function.style_hide.php
* Type: function
* Name: style_hide
* Version: 1.0
* Purpose: Hides a div/span element without disabling the view in dreamweaver
* -------------------------------------------------------------
*/
function smarty_function_style_hide($params, &$smarty)
{
return 'style="display:none"';
}
?>