2016-03-06 00:50:22 +00:00
< ? php
/*--------------------------------------------------------------------------------------------------------| www . vdm . io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \ / | | | | | | |
\ \ / / _ _ ___ | | _ | | | | _____ _____ | | ___ _ __ _ __ ___ ___ _ __ | | _ | \ / | ___ | | _ | | __ ___ __ | |
\ \ / / _ ` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| ' _ \ / _ \ / _ ` |
\ / ( _ | \__ \ | _ | | __ | | __ / \ V / __ / | ( _ ) | | _ ) | | | | | | __ / | | | | _ | | | | __ / | _ | | | | ( _ ) | ( _ | |
\ / \__ , _ | ___ / \__ | | _____ / \___ | \_ / \___ | _ | \___ /| . __ /| _ | | _ | | _ | \___ | _ | | _ | \__ | | _ | | _ | \___ | \__ | _ | | _ | \___ / \__ , _ |
2019-04-04 11:53:29 +00:00
| |
| _ |
2016-03-06 00:50:22 +00:00
/-------------------------------------------------------------------------------------------------------------------------------/
2020-05-30 22:35:11 +00:00
@ version 1.0 . 11
2021-02-08 10:27:19 +00:00
@ build 8 th February , 2021
2016-03-06 00:50:22 +00:00
@ created 24 th February , 2016
@ package Support Groups
@ subpackage regions_fullwidth . php
2019-04-04 11:53:29 +00:00
@ author Llewellyn van der Merwe < http :// www . vdm . io >
2016-03-06 00:50:22 +00:00
@ copyright Copyright ( C ) 2015. All Rights Reserved
2019-04-04 11:53:29 +00:00
@ license GNU / GPL Version 2 or later - http :// www . gnu . org / licenses / gpl - 2.0 . html
Support Groups
2016-03-06 00:50:22 +00:00
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// set the defaults
2019-04-04 11:53:29 +00:00
$items = $displayData -> vvyregions ;
$user = JFactory :: getUser ();
$id = $displayData -> item -> id ;
// set the edit URL
2018-05-05 13:35:10 +00:00
$edit = " index.php?option=com_supportgroups&view=regions&task=region.edit " ;
2019-04-04 11:53:29 +00:00
// set a return value
$return = ( $id ) ? " index.php?option=com_supportgroups&view=country&layout=edit&id= " . $id : " " ;
// check for a return value
$jinput = JFactory :: getApplication () -> input ;
if ( $_return = $jinput -> get ( 'return' , null , 'base64' ))
{
$return .= " &return= " . $_return ;
}
// check if return value was set
if ( SupportgroupsHelper :: checkString ( $return ))
{
// set the referral values
$ref = ( $id ) ? " &ref=country&refid= " . $id . " &return= " . urlencode ( base64_encode ( $return )) : " &return= " . urlencode ( base64_encode ( $return ));
}
else
{
$ref = ( $id ) ? " &ref=country&refid= " . $id : " " ;
}
// set the create new URL
$new = " index.php?option=com_supportgroups&view=regions&task=region.edit " . $ref ;
// set the create new and close URL
$close_new = " index.php?option=com_supportgroups&view=regions&task=region.edit " ;
// load the action object
2018-05-05 13:35:10 +00:00
$can = SupportgroupsHelper :: getActions ( 'region' );
2016-03-06 00:50:22 +00:00
?>
< div class = " form-vertical " >
2016-03-08 10:24:26 +00:00
< ? php if ( $can -> get ( 'region.create' )) : ?>
2019-04-04 11:53:29 +00:00
< div class = " btn-group " >
< a class = " btn btn-small btn-success " href = " <?php echo $new ; ?> " >< span class = " icon-new icon-white " ></ span > < ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_NEW' ); ?> </a>
< a class = " btn btn-small " onclick = " Joomla.submitbutton('country.cancel'); " href = " <?php echo $close_new ; ?> " >< span class = " icon-new " ></ span > < ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_CLOSE_NEW' ); ?> </a>
</ div >< br />< br />
2016-03-06 00:50:22 +00:00
< ? php endif ; ?>
< ? php if ( SupportgroupsHelper :: checkArray ( $items )) : ?>
2018-05-05 13:35:10 +00:00
< table class = " footable table data regions " data - show - toggle = " true " data - toggle - column = " first " data - sorting = " true " data - paging = " true " data - paging - size = " 20 " data - filtering = " true " >
2016-03-06 00:50:22 +00:00
< thead >
< tr >
2018-05-05 13:35:10 +00:00
< th data - type = " html " data - sort - use = " text " >
2016-03-06 00:50:22 +00:00
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_REGION_NAME_LABEL' ); ?>
</ th >
2018-05-05 13:35:10 +00:00
< th data - breakpoints = " xs sm " data - type = " html " data - sort - use = " text " >
2016-03-06 00:50:22 +00:00
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_REGION_COUNTRY_LABEL' ); ?>
</ th >
2018-05-05 13:35:10 +00:00
< th width = " 10 " data - breakpoints = " xs sm md " >
2016-03-06 00:50:22 +00:00
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_REGION_STATUS' ); ?>
</ th >
2018-05-05 13:35:10 +00:00
< th width = " 5 " data - type = " number " data - breakpoints = " xs sm md " >
2016-03-06 00:50:22 +00:00
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_REGION_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 = SupportgroupsHelper :: getActions ( 'region' , $item , 'regions' );
?>
< tr >
2019-04-04 11:53:29 +00:00
< td >
2016-03-08 10:24:26 +00:00
< ? php if ( $canDo -> get ( 'region.edit' )) : ?>
2019-04-04 11:53:29 +00:00
< a href = " <?php echo $edit ; ?>&id=<?php echo $item->id ; ?><?php echo $ref ; ?> " >< ? php echo $displayData -> escape ( $item -> name ); ?> </a>
< ? php if ( $item -> checked_out ) : ?>
< ? php echo JHtml :: _ ( 'jgrid.checkedout' , $i , $userChkOut -> name , $item -> checked_out_time , 'regions.' , $canCheckin ); ?>
< ? php endif ; ?>
2016-03-06 00:50:22 +00:00
< ? php else : ?>
2019-04-04 11:53:29 +00:00
< ? php echo $displayData -> escape ( $item -> name ); ?>
2016-03-06 00:50:22 +00:00
< ? php endif ; ?>
</ td >
< td >
< ? php echo $displayData -> escape ( $item -> country_name ); ?>
</ td >
2021-01-06 13:58:12 +00:00
< ? php if ( $item -> published == 1 ) : ?>
2018-05-05 13:35:10 +00:00
< td class = " center " data - sort - value = " 1 " >
< span class = " status-metro status-published " title = " <?php echo JText::_('COM_SUPPORTGROUPS_PUBLISHED'); ?> " >
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_PUBLISHED' ); ?>
2016-03-06 00:50:22 +00:00
</ span >
</ td >
2021-01-06 13:58:12 +00:00
< ? php elseif ( $item -> published == 0 ) : ?>
2018-05-05 13:35:10 +00:00
< td class = " center " data - sort - value = " 2 " >
< span class = " status-metro status-inactive " title = " <?php echo JText::_('COM_SUPPORTGROUPS_INACTIVE'); ?> " >
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_INACTIVE' ); ?>
2016-03-06 00:50:22 +00:00
</ span >
</ td >
2021-01-06 13:58:12 +00:00
< ? php elseif ( $item -> published == 2 ) : ?>
2018-05-05 13:35:10 +00:00
< td class = " center " data - sort - value = " 3 " >
< span class = " status-metro status-archived " title = " <?php echo JText::_('COM_SUPPORTGROUPS_ARCHIVED'); ?> " >
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_ARCHIVED' ); ?>
2016-03-06 00:50:22 +00:00
</ span >
</ td >
2021-01-06 13:58:12 +00:00
< ? php elseif ( $item -> published == - 2 ) : ?>
2018-05-05 13:35:10 +00:00
< td class = " center " data - sort - value = " 4 " >
< span class = " status-metro status-trashed " title = " <?php echo JText::_('COM_SUPPORTGROUPS_TRASHED'); ?> " >
< ? php echo JText :: _ ( 'COM_SUPPORTGROUPS_TRASHED' ); ?>
2016-03-06 00:50:22 +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 >