<?php/** * @package Joomla.Administrator * @subpackage com_media * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */defined('_JEXEC')ordie;$app=JFactory::getApplication();$style=$app->getUserStateFromRequest('media.list.layout','layout','thumbs','word');?><divclass="media btn-group ventral-space"><ahref="#"id="thumbs"onclick="MediaManager.setViewType('thumbs')"class="btn <?phpecho($style=='thumbs')?'active':'';?>"><spanclass="icon-grid-view-2"></span><?phpechoJText::_('COM_MEDIA_THUMBNAIL_VIEW');?></a><ahref="#"id="details"onclick="MediaManager.setViewType('details')"class="btn <?phpecho($style=='details')?'active':'';?>"><spanclass="icon-list-view"></span><?phpechoJText::_('COM_MEDIA_DETAIL_VIEW');?></a></div>