2017-08-25 01:46:12 +00:00
< ? php
2018-05-18 06:28:27 +00:00
/**
* @ package Joomla . Component . Builder
*
* @ created 30 th April , 2015
* @ author Llewellyn van der Merwe < http :// www . joomlacomponentbuilder . com >
* @ github Joomla Component Builder < https :// github . com / vdm - io / Joomla - Component - Builder >
2019-02-23 13:28:54 +00:00
* @ copyright Copyright ( C ) 2015 - 2019 Vast Development Method . All rights reserved .
2018-05-18 06:28:27 +00:00
* @ license GNU General Public License version 2 or later ; see LICENSE . txt
*/
2017-08-25 01:46:12 +00:00
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// set the defaults
2019-10-16 20:34:36 +00:00
$items = $displayData -> vyslinked_components ;
2018-08-18 12:09:17 +00:00
$user = JFactory :: getUser ();
$id = $displayData -> item -> id ;
// set the edit URL
$edit = " index.php?option=com_componentbuilder&view=joomla_components&task=joomla_component.edit " ;
// set a return value
$return = ( $id ) ? " index.php?option=com_componentbuilder&view=server&layout=edit&id= " . $id : " " ;
// check for a return value
$jinput = JFactory :: getApplication () -> input ;
if ( $_return = $jinput -> get ( 'return' , null , 'base64' ))
{
$return .= " &return= " . $_return ;
}
2019-03-04 12:47:28 +00:00
// check if return value was set
if ( ComponentbuilderHelper :: checkString ( $return ))
{
// set the referral values
$ref = ( $id ) ? " &ref=server&refid= " . $id . " &return= " . urlencode ( base64_encode ( $return )) : " &return= " . urlencode ( base64_encode ( $return ));
}
else
{
$ref = ( $id ) ? " &ref=server&refid= " . $id : " " ;
}
2017-08-25 01:46:12 +00:00
?>
< div class = " form-vertical " >
< ? php if ( ComponentbuilderHelper :: checkArray ( $items )) : ?>
< table class = " footable table data joomla_components " data - show - toggle = " true " data - toggle - column = " first " data - sorting = " true " data - paging = " true " data - paging - size = " 20 " data - filtering = " true " >
< thead >
< tr >
< th data - type = " html " data - sort - use = " text " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_LABEL' ); ?>
</ th >
< th data - breakpoints = " xs sm " data - type = " html " data - sort - use = " text " >
2018-08-19 20:26:26 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENTS_CODE_NAME' ); ?>
2017-08-25 01:46:12 +00:00
</ th >
< th data - breakpoints = " xs sm " data - type = " html " data - sort - use = " text " >
2018-08-19 20:26:26 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENTS_DESCRIPTION' ); ?>
2017-08-25 01:46:12 +00:00
</ th >
< th data - breakpoints = " xs sm md " data - type = " html " data - sort - use = " text " >
2018-08-19 20:26:26 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENTS_COMPANY_DETAILS' ); ?>
2017-08-25 01:46:12 +00:00
</ th >
< th width = " 10 " data - breakpoints = " xs sm md " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT_STATUS' ); ?>
</ th >
< th width = " 5 " data - type = " number " data - breakpoints = " xs sm md " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ID' ); ?>
</ th >
</ tr >
</ thead >
< tbody >
< ? php foreach ( $items as $i => $item ) : ?>
< ? php
$canCheckin = $user -> authorise ( 'core.manage' , 'com_checkin' ) || $item -> checked_out == $user -> id || $item -> checked_out == 0 ;
$userChkOut = JFactory :: getUser ( $item -> checked_out );
$canDo = ComponentbuilderHelper :: getActions ( 'joomla_component' , $item , 'joomla_components' );
?>
< tr >
2018-05-24 13:56:56 +00:00
< td >
2018-08-19 20:15:43 +00:00
< div >
2017-10-14 18:07:23 +00:00
< ? php if ( $canDo -> get ( 'joomla_component.edit' )) : ?>
2018-08-18 12:09:17 +00:00
< a href = " <?php echo $edit ; ?>&id=<?php echo $item->id ; ?><?php echo $ref ; ?> " >< ? php echo $displayData -> escape ( $item -> system_name ); ?> </a>
2018-05-24 13:56:56 +00:00
< ? php if ( $item -> checked_out ) : ?>
< ? php echo JHtml :: _ ( 'jgrid.checkedout' , $i , $userChkOut -> name , $item -> checked_out_time , 'joomla_components.' , $canCheckin ); ?>
< ? php endif ; ?>
2017-08-25 01:46:12 +00:00
< ? php else : ?>
2018-05-24 13:56:56 +00:00
< ? php echo $displayData -> escape ( $item -> system_name ); ?>
2018-08-19 20:15:43 +00:00
< ? php endif ; ?>
- < ? php echo $this -> escape ( $item -> component_version ); ?>
</ div >
2019-07-28 21:48:42 +00:00
< ? php
2018-08-19 20:15:43 +00:00
// setup the buttons
if ( ! isset ( $_buttons ) || ! ComponentbuilderHelper :: checkArray ( $_buttons ))
{
$_buttons = array ();
$_buttons [ 0 ] = array (
array (
'view' => 'component_admin_views' ,
'views' => 'components_admin_views' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_ADMIN_VIEWS' ),
'icon' => 'stack' ),
array (
'view' => 'component_custom_admin_views' ,
'views' => 'components_custom_admin_views' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_CUSTOM_ADMIN_VIEWS' ),
'icon' => 'screen' ),
array (
'view' => 'component_site_views' ,
'views' => 'components_site_views' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_SITE_VIEWS' ),
'icon' => 'palette' ),
array (
'view' => 'component_config' ,
'views' => 'components_config' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_CONFIG' ),
'icon' => 'options' )
);
$_buttons [ 1 ] = array (
2019-02-15 22:03:21 +00:00
array (
'view' => 'component_placeholders' ,
'views' => 'components_placeholders' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_PLACEHOLDERS' ),
'icon' => 'search' ),
2018-08-19 20:15:43 +00:00
array (
'view' => 'component_updates' ,
'views' => 'components_updates' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_UPDATES' ),
'icon' => 'database' ),
array (
'view' => 'component_mysql_tweaks' ,
'views' => 'components_mysql_tweaks' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_MYSQL_TWEAKS' ),
'icon' => 'screwdriver' ),
array (
'view' => 'component_files_folders' ,
'views' => 'components_files_folders' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_FILES_FOLDERS' ),
'icon' => 'briefcase' )
);
$_buttons [ 2 ] = array (
array (
'view' => 'component_custom_admin_menus' ,
'views' => 'components_custom_admin_menus' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_CUSTOM_ADMIN_MENUS' ),
'icon' => 'plus' ),
array (
'view' => 'component_dashboard' ,
'views' => 'components_dashboard' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_DASHBOARD' ),
2019-07-17 02:36:05 +00:00
'icon' => 'dashboard' ),
array (
'view' => 'component_plugins' ,
'views' => 'components_plugins' ,
'title' => JText :: _ ( 'COM_COMPONENTBUILDER_THE_COMPONENT_PLUGINS' ),
'icon' => 'power-cord' )
2018-08-19 20:15:43 +00:00
);
}
?>
< div class = " btn-group " style = " margin: 5px 0 0 0; " >
< ? php foreach ( $_buttons [ 0 ] as $_button ) : ?>
< ? php if ( $canDo -> get ( $_button [ 'view' ] . '.edit' ) && ( $id = ComponentbuilderHelper :: getVar ( $_button [ 'view' ], $item -> id , 'joomla_component' , 'id' )) !== false ) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&id=<?php echo $id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php elseif ( $canDo -> get ( $_button [ 'view' ] . '.create' )) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&ref=joomla_component&refid=<?php echo $item->id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php endif ; ?>
< ? php endforeach ; ?>
</ div >
2017-08-25 01:46:12 +00:00
</ td >
< td >
2018-08-19 20:15:43 +00:00
< div >
< ? php echo $displayData -> escape ( $item -> name_code ); ?>
</ div >
< div class = " btn-group " style = " margin: 5px 0 0 0; " >
< ? php foreach ( $_buttons [ 1 ] as $_button ) : ?>
< ? php if ( $canDo -> get ( $_button [ 'view' ] . '.edit' ) && ( $id = ComponentbuilderHelper :: getVar ( $_button [ 'view' ], $item -> id , 'joomla_component' , 'id' )) !== false ) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&id=<?php echo $id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php elseif ( $canDo -> get ( $_button [ 'view' ] . '.create' )) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&ref=joomla_component&refid=<?php echo $item->id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php endif ; ?>
< ? php endforeach ; ?>
</ div >
2017-08-25 01:46:12 +00:00
</ td >
< td >
2018-08-19 20:15:43 +00:00
< div >
< ? php echo $displayData -> escape ( $item -> short_description ); ?>
</ div >
< div class = " btn-group " style = " margin: 5px 0 0 0; " >
< ? php foreach ( $_buttons [ 2 ] as $_button ) : ?>
< ? php if ( $canDo -> get ( $_button [ 'view' ] . '.edit' ) && ( $id = ComponentbuilderHelper :: getVar ( $_button [ 'view' ], $item -> id , 'joomla_component' , 'id' )) !== false ) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&id=<?php echo $id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php elseif ( $canDo -> get ( $_button [ 'view' ] . '.create' )) : ?>
2019-07-28 21:48:42 +00:00
< a class = " hasTooltip btn btn-mini " href = " index.php?option=com_componentbuilder&view=<?php echo $_button['views'] ?>&task=<?php echo $_button['view'] ?>.edit&ref=joomla_component&refid=<?php echo $item->id ; ?>&return=<?php echo $this->return_here ; ?> " title = " <?php echo $_button['title'] ; ?> " >< span class = " icon-<?php echo $_button['icon'] ; ?> " ></ span ></ a >
2018-08-19 20:15:43 +00:00
< ? php endif ; ?>
< ? php endforeach ; ?>
</ div >
2017-08-25 01:46:12 +00:00
</ td >
< td >
2018-08-19 20:15:43 +00:00
< div >< b >< ? php echo $this -> escape ( $item -> companyname ); ?> </b><br />
< ? php if ( ComponentbuilderHelper :: checkString ( $item -> author )) : ?>
< em >< ? php echo $this -> escape ( $item -> author ); ?> <em><br />
< ? php endif ; ?>
< ? php if ( ComponentbuilderHelper :: checkString ( $item -> email ) && ComponentbuilderHelper :: checkString ( $item -> author )) : ?>
< a href = " mailto:<?php echo $this->escape ( $item->email ); ?> " title = " <?php echo JText::sprintf('COM_COMPONENTBUILDER_EMAIL_S', $item->author ); ?> " target = " _blank " >
< ? php echo $this -> escape ( $item -> email ); ?>
</ a >
< br />
< ? php endif ; ?>
< ? php if ( ComponentbuilderHelper :: checkString ( $item -> website ) && ComponentbuilderHelper :: checkString ( $item -> author )) : ?>
< a href = " <?php echo $this->escape ( $item->website ); ?> " title = " <?php echo JText::sprintf('COM_COMPONENTBUILDER_WEBSITE_OF_S', $item->companyname ); ?> " target = " _blank " >
< ? php echo $this -> escape ( $item -> website ); ?>
</ a >
< ? php endif ; ?>
</ div >
2017-08-25 01:46:12 +00:00
</ td >
< ? php if ( $item -> published == 1 ) : ?>
< td class = " center " data - sort - value = " 1 " >
2017-10-30 13:08:02 +00:00
< span class = " status-metro status-published " title = " <?php echo JText::_('COM_COMPONENTBUILDER_PUBLISHED'); ?> " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_PUBLISHED' ); ?>
2017-08-25 01:46:12 +00:00
</ span >
</ td >
< ? php elseif ( $item -> published == 0 ) : ?>
< td class = " center " data - sort - value = " 2 " >
2017-10-30 13:08:02 +00:00
< span class = " status-metro status-inactive " title = " <?php echo JText::_('COM_COMPONENTBUILDER_INACTIVE'); ?> " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_INACTIVE' ); ?>
2017-08-25 01:46:12 +00:00
</ span >
</ td >
< ? php elseif ( $item -> published == 2 ) : ?>
< td class = " center " data - sort - value = " 3 " >
2017-10-30 13:08:02 +00:00
< span class = " status-metro status-archived " title = " <?php echo JText::_('COM_COMPONENTBUILDER_ARCHIVED'); ?> " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_ARCHIVED' ); ?>
2017-08-25 01:46:12 +00:00
</ span >
</ td >
< ? php elseif ( $item -> published == - 2 ) : ?>
< td class = " center " data - sort - value = " 4 " >
2017-10-30 13:08:02 +00:00
< span class = " status-metro status-trashed " title = " <?php echo JText::_('COM_COMPONENTBUILDER_TRASHED'); ?> " >
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_TRASHED' ); ?>
2017-08-25 01:46:12 +00:00
</ span >
</ td >
< ? php endif ; ?>
< td class = " nowrap center hidden-phone " >
< ? php echo $item -> id ; ?>
</ td >
</ tr >
< ? php endforeach ; ?>
</ tbody >
</ table >
< ? php else : ?>
< div class = " alert alert-no-items " >
< ? php echo JText :: _ ( 'JGLOBAL_NO_MATCHING_RESULTS' ); ?>
</ div >
< ? php endif ; ?>
</ div >