150 lines
5.4 KiB
PHP
150 lines
5.4 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
|
|
Vast Development Method
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@package getBible.net
|
|
|
|
@created 3rd December, 2015
|
|
@author Llewellyn van der Merwe <https://getbible.net>
|
|
@git Get Bible <https://git.vdm.dev/getBible>
|
|
@github Get Bible <https://github.com/getBible>
|
|
@support Get Bible <https://git.vdm.dev/getBible/support>
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
// set the defaults
|
|
$items = $displayData->vvwnotes;
|
|
$user = JFactory::getUser();
|
|
$id = $displayData->item->id;
|
|
// set the edit URL
|
|
$edit = "index.php?option=com_getbible&view=notes&task=note.edit";
|
|
// set a return value
|
|
$return = ($id) ? "index.php?option=com_getbible&view=linker&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 (GetbibleHelper::checkString($return))
|
|
{
|
|
// set the referral values
|
|
$ref = ($id) ? "&ref=linker&refid=" . $id . "&return=" . urlencode(base64_encode($return)) : "&return=" . urlencode(base64_encode($return));
|
|
}
|
|
else
|
|
{
|
|
$ref = ($id) ? "&ref=linker&refid=" . $id : "";
|
|
}
|
|
// set the create new URL
|
|
$new = "index.php?option=com_getbible&view=notes&task=note.edit" . $ref;
|
|
// set the create new and close URL
|
|
$close_new = "index.php?option=com_getbible&view=notes&task=note.edit";
|
|
// load the action object
|
|
$can = GetbibleHelper::getActions('note');
|
|
|
|
?>
|
|
<div class="form-vertical">
|
|
<?php if ($can->get('note.create')): ?>
|
|
<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_GETBIBLE_NEW'); ?></a>
|
|
<a class="btn btn-small" onclick="Joomla.submitbutton('linker.cancel');" href="<?php echo $close_new; ?>"><span class="icon-new"></span> <?php echo JText::_('COM_GETBIBLE_CLOSE_NEW'); ?></a>
|
|
</div><br /><br />
|
|
<?php endif; ?>
|
|
<?php if (GetbibleHelper::checkArray($items)): ?>
|
|
<table class="footable table data notes metro-blue" data-page-size="20" data-filter="#filter_notes">
|
|
<thead>
|
|
<tr>
|
|
<th data-toggle="true">
|
|
<?php echo JText::_('COM_GETBIBLE_NOTE_BOOK_NR_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone">
|
|
<?php echo JText::_('COM_GETBIBLE_NOTE_LINKER_LABEL'); ?>
|
|
</th>
|
|
<th data-hide="phone">
|
|
<?php echo JText::_('COM_GETBIBLE_NOTE_ACCESS_LABEL'); ?>
|
|
</th>
|
|
<th width="10" data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_GETBIBLE_NOTE_STATUS'); ?>
|
|
</th>
|
|
<th width="5" data-type="numeric" data-hide="phone,tablet">
|
|
<?php echo JText::_('COM_GETBIBLE_NOTE_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 = GetbibleHelper::getActions('note',$item,'notes');
|
|
?>
|
|
<tr>
|
|
<td>
|
|
<?php if ($canDo->get('note.edit')): ?>
|
|
<a href="<?php echo $edit; ?>&id=<?php echo $item->id; ?><?php echo $ref; ?>"><?php echo $displayData->escape($item->book_nr); ?></a>
|
|
<?php if ($item->checked_out): ?>
|
|
<?php echo JHtml::_('jgrid.checkedout', $i, $userChkOut->name, $item->checked_out_time, 'notes.', $canCheckin); ?>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<?php echo $displayData->escape($item->book_nr); ?>
|
|
<?php endif; ?>
|
|
</td>
|
|
<td>
|
|
<?php echo $displayData->escape($item->linker_name); ?>
|
|
</td>
|
|
<td>
|
|
<?php echo JText::_($item->access); ?>
|
|
</td>
|
|
<?php if ($item->published == 1): ?>
|
|
<td class="center" data-value="1">
|
|
<span class="status-metro status-published" title="<?php echo JText::_('COM_GETBIBLE_PUBLISHED'); ?>">
|
|
<?php echo JText::_('COM_GETBIBLE_PUBLISHED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == 0): ?>
|
|
<td class="center" data-value="2">
|
|
<span class="status-metro status-inactive" title="<?php echo JText::_('COM_GETBIBLE_INACTIVE'); ?>">
|
|
<?php echo JText::_('COM_GETBIBLE_INACTIVE'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == 2): ?>
|
|
<td class="center" data-value="3">
|
|
<span class="status-metro status-archived" title="<?php echo JText::_('COM_GETBIBLE_ARCHIVED'); ?>">
|
|
<?php echo JText::_('COM_GETBIBLE_ARCHIVED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php elseif ($item->published == -2): ?>
|
|
<td class="center" data-value="4">
|
|
<span class="status-metro status-trashed" title="<?php echo JText::_('COM_GETBIBLE_TRASHED'); ?>">
|
|
<?php echo JText::_('COM_GETBIBLE_TRASHED'); ?>
|
|
</span>
|
|
</td>
|
|
<?php endif; ?>
|
|
<td class="nowrap center hidden-phone">
|
|
<?php echo $item->id; ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
<tfoot class="hide-if-no-paging">
|
|
<tr>
|
|
<td colspan="5">
|
|
<div class="pagination pagination-centered"></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<?php else: ?>
|
|
<div class="alert alert-no-items">
|
|
<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|