2016-01-30 20:28:43 +00:00
< ? php
/*--------------------------------------------------------------------------------------------------------| www . vdm . io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \ / | | | | | | |
\ \ / / _ _ ___ | | _ | | | | _____ _____ | | ___ _ __ _ __ ___ ___ _ __ | | _ | \ / | ___ | | _ | | __ ___ __ | |
\ \ / / _ ` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| ' _ \ / _ \ / _ ` |
\ / ( _ | \__ \ | _ | | __ | | __ / \ V / __ / | ( _ ) | | _ ) | | | | | | __ / | | | | _ | | | | __ / | _ | | | | ( _ ) | ( _ | |
\ / \__ , _ | ___ / \__ | | _____ / \___ | \_ / \___ | _ | \___ /| . __ /| _ | | _ | | _ | \___ | _ | | _ | \__ | | _ | | _ | \___ | \__ | _ | | _ | \___ / \__ , _ |
| |
| _ |
/-------------------------------------------------------------------------------------------------------------------------------/
2017-03-28 14:57:59 +00:00
@ version 2.3 . 9
@ build 28 th March , 2017
2016-01-30 20:28:43 +00:00
@ created 30 th April , 2015
@ package Component Builder
@ subpackage fields_fullwidth . php
2016-12-22 21:32:13 +00:00
@ author Llewellyn van der Merwe < http :// vdm . bz / component - builder >
2016-01-30 20:28:43 +00:00
@ copyright Copyright ( C ) 2015. All Rights Reserved
@ license GNU / GPL Version 2 or later - http :// www . gnu . org / licenses / gpl - 2.0 . html
Builds Complex Joomla Components
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// set the defaults
2017-03-27 12:38:51 +00:00
$items = $displayData -> vxwfields ;
2016-01-30 20:28:43 +00:00
$user = JFactory :: getUser ();
$id = $displayData -> item -> id ;
$edit = " index.php?option=com_componentbuilder&view=fields&task=field.edit " ;
$ref = ( $id ) ? " &ref=admin_view&refid= " . $id : " " ;
$new = " index.php?option=com_componentbuilder&view=field&layout=edit " . $ref ;
$can = ComponentbuilderHelper :: getActions ( 'field' );
?>
< div class = " form-vertical " >
< ? php if ( $can -> get ( 'field.create' )) : ?>
< a class = " btn btn-small btn-success " href = " <?php echo $new ; ?> " >< span class = " icon-new icon-white " ></ span > < ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_NEW' ); ?> </a><br /><br />
< ? php endif ; ?>
< ? php if ( ComponentbuilderHelper :: checkArray ( $items )) : ?>
2016-05-07 01:12:30 +00:00
< table class = " footable table data fields " data - show - toggle = " true " data - toggle - column = " first " data - sorting = " true " data - paging = " true " data - paging - size = " 20 " data - filtering = " true " >
2016-01-30 20:28:43 +00:00
< thead >
< tr >
2016-05-07 01:12:30 +00:00
< th data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_NAME_LABEL' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " xs sm " data - type = " html " data - sort - use = " text " >
2016-03-04 00:01:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_FIELDTYPE_LABEL' ); ?>
2016-01-30 20:28:43 +00:00
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " xs sm " data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_DATATYPE_LABEL' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " xs sm md " data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_INDEXES_LABEL' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " xs sm md " data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_NULL_SWITCH_LABEL' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " xs sm md " data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_FIELD_CATEGORY' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th data - breakpoints = " all " data - type = " html " data - sort - use = " text " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_STORE_LABEL' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th width = " 10 " data - breakpoints = " xs sm md " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_STATUS' ); ?>
</ th >
2016-05-07 01:12:30 +00:00
< th width = " 5 " data - type = " number " data - breakpoints = " xs sm md " >
2016-01-30 20:28:43 +00:00
< ? php echo JText :: _ ( 'COM_COMPONENTBUILDER_FIELD_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 ( 'field' , $item , 'fields' );
?>
< tr >
< td class = " nowrap " >
< ? php if ( $canDo -> get ( 'field.edit' )) : ?>
< a href = " <?php echo $edit ; ?>&id=<?php echo $item->id ; ?>&ref=admin_view&refid=<?php echo $id ; ?> " >< ? php echo $displayData -> escape ( $item -> name ); ?> </a>
< ? php if ( $item -> checked_out ) : ?>
< ? php echo JHtml :: _ ( 'jgrid.checkedout' , $i , $userChkOut -> name , $item -> checked_out_time , 'fields.' , $canCheckin ); ?>
< ? php endif ; ?>
< ? php else : ?>
< div class = " name " >< ? php echo $displayData -> escape ( $item -> name ); ?> </div>
< ? php endif ; ?>
</ td >
< td class = " nowrap " >
2016-03-04 00:01:43 +00:00
< ? php if ( $user -> authorise ( 'fieldtype.edit' , 'com_componentbuilder.fieldtype.' . ( int ) $item -> fieldtype )) : ?>
< a href = " index.php?option=com_componentbuilder&view=fieldtypes&task=fieldtype.edit&id=<?php echo $item->fieldtype ; ?>&ref=admin_view&refid=<?php echo $id ; ?> " >< ? php echo $displayData -> escape ( $item -> fieldtype_name ); ?> </a>
2016-01-30 20:28:43 +00:00
< ? php else : ?>
2016-03-04 00:01:43 +00:00
< div class = " name " >< ? php echo $displayData -> escape ( $item -> fieldtype_name ); ?> </div>
2016-01-30 20:28:43 +00:00
< ? php endif ; ?>
</ td >
< td >
< ? php echo JText :: _ ( $item -> datatype ); ?>
</ td >
< td >
< ? php echo JText :: _ ( $item -> indexes ); ?>
</ td >
< td >
< ? php echo JText :: _ ( $item -> null_switch ); ?>
</ td >
< td class = " nowrap " >
< ? php if ( $user -> authorise ( 'core.edit' , 'com_componentbuilder.fields.category.' . ( int ) $item -> catid )) : ?>
< a href = " index.php?option=com_categories&task=category.edit&id=<?php echo (int) $item->catid ; ?>&extension=com_componentbuilder.fields " >< ? php echo $displayData -> escape ( $item -> category_title ); ?> </a>
< ? php else : ?>
< ? php echo $displayData -> escape ( $item -> category_title ); ?>
< ? php endif ; ?>
</ td >
< td >
< ? php echo JText :: _ ( $item -> store ); ?>
</ td >
< ? php if ( $item -> published == 1 ) : ?>
2016-05-07 01:12:30 +00:00
< td class = " center " data - sort - value = " 1 " >
2016-01-30 20:28:43 +00:00
< span class = " status-metro status-published " title = " <?php echo JText::_('PUBLISHED'); ?> " >
< ? php echo JText :: _ ( 'PUBLISHED' ); ?>
</ span >
</ td >
< ? php elseif ( $item -> published == 0 ) : ?>
2016-05-07 01:12:30 +00:00
< td class = " center " data - sort - value = " 2 " >
2016-01-30 20:28:43 +00:00
< span class = " status-metro status-inactive " title = " <?php echo JText::_('INACTIVE'); ?> " >
< ? php echo JText :: _ ( 'INACTIVE' ); ?>
</ span >
</ td >
< ? php elseif ( $item -> published == 2 ) : ?>
2016-05-07 01:12:30 +00:00
< td class = " center " data - sort - value = " 3 " >
2016-01-30 20:28:43 +00:00
< span class = " status-metro status-archived " title = " <?php echo JText::_('ARCHIVED'); ?> " >
< ? php echo JText :: _ ( 'ARCHIVED' ); ?>
</ span >
</ td >
< ? php elseif ( $item -> published == - 2 ) : ?>
2016-05-07 01:12:30 +00:00
< td class = " center " data - sort - value = " 4 " >
2016-01-30 20:28:43 +00:00
< span class = " status-metro status-trashed " title = " <?php echo JText::_('ARCHIVED'); ?> " >
< ? php echo JText :: _ ( 'ARCHIVED' ); ?>
</ 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 >