API15:JElementFilelist/fetchElement
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Contents |
Syntax
fetchElement($name, $value, &$node, $control_name)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | ||
| $value | ||
| &$node | ||
| $control_name |
Defined in
libraries/joomla/html/parameter/element/filelist.php
Importing
jimport( 'joomla.html.parameter.element.filelist' );
Source Body
function fetchElement($name, $value, &$node, $control_name) { jimport( 'joomla.filesystem.folder' ); jimport( 'joomla.filesystem.file' ); // path to images directory $path = JPATH_ROOT.DS.$node->attributes('directory'); $filter = $node->attributes('filter'); $exclude = $node->attributes('exclude'); $stripExt = $node->attributes('stripext'); $files = JFolder::files($path, $filter); $options = array (); if (!$node->attributes('hide_none')) { $options[] = JHTML::_('select.option', '-1', '- '.JText::_('Do not use').' -'); } if (!$node->attributes('hide_default')) { $options[] = JHTML::_('select.option', '', '- '.JText::_('Use default').' -'); } if ( is_array($files) ) { foreach ($files as $file) { if ($exclude) { if (preg_match( chr( 1 ) . $exclude . chr( 1 ), $file )) { continue; } } if ($stripExt) { $file = JFile::stripExt( $file ); } $options[] = JHTML::_('select.option', $file, $file); } } return JHTML::_('select.genericlist', $options, ''.$control_name.'['.$name.']', 'class="inputbox"', 'value', 'text', $value, $control_name.$name); }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
