getUserStateFromRequest('media.list.layout', 'layout', 'thumbs', 'word');
JHTML::_('behavior.mootools');
$document = &JFactory::getDocument();
$document->addStyleSheet('components/com_media/assets/medialist-'.$style.'.css');
$document->addScriptDeclaration("
window.addEvent('domready', function() {
window.top.document.updateUploader && window.top.document.updateUploader();
$$('a.img-preview').each(function(el) {
el.addEvent('click', function(e) {
new Event(e).stop();
window.top.document.preview.fromElement(el);
});
});
});");
$this->assign('baseURL', JURI::root());
$this->assignRef('images', $this->get('images'));
$this->assignRef('documents', $this->get('documents'));
$this->assignRef('folders', $this->get('folders'));
$this->assignRef('state', $this->get('state'));
parent::display($tpl);
}
function setFolder($index = 0)
{
if (isset($this->folders[$index])) {
$this->_tmp_folder = &$this->folders[$index];
} else {
$this->_tmp_folder = new JObject;
}
}
function setImage($index = 0)
{
if (isset($this->images[$index])) {
$this->_tmp_img = &$this->images[$index];
} else {
$this->_tmp_img = new JObject;
}
}
function setDoc($index = 0)
{
if (isset($this->documents[$index])) {
$this->_tmp_doc = &$this->documents[$index];
} else {
$this->_tmp_doc = new JObject;
}
}
}