Source for file directory.php
Documentation is available at directory.php
* @package Joomla.Administrator
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* Utility class working with directory
* @package Joomla.Administrator
* Method to generate a (un)writable message for directory
* @param boolean $writable is the directory writable?
* @return string html code
public static function writable($writable)
return '<span class="badge badge-success">' .
JText::_('COM_ADMIN_WRITABLE') .
'</span>';
return '<span class="badge badge-important">' .
JText::_('COM_ADMIN_UNWRITABLE') .
'</span>';
* Method to generate a message for a directory
* @param string $dir the directory
* @param boolean $message the message
* @param boolean $visible is the $dir visible?
* @return string html code
public static function message($dir, $message, $visible=
true)
return $output .
' <strong>' .
JText::_($message) .
'</strong>';
Documentation generated on Tue, 19 Nov 2013 15:01:29 +0100 by phpDocumentor 1.4.3