Next Update.

This commit is contained in:
Llewellyn van der Merwe 2016-03-07 05:21:52 +02:00
parent db102ff59f
commit d606dd1f2f
259 changed files with 1818 additions and 1818 deletions

View File

@ -23,7 +23,7 @@ The best way to see all your options is to install this component on you Joomla
+ *Author*: [Llewellyn van der Merwe] (mailto:llewellyn@vdm.io)
+ *Name*: [Sermon Distributor] (https://www.vdm.io/)
+ *First Build*: 22nd October, 2015
+ *Last Build*: 3rd March, 2016
+ *Last Build*: 7th March, 2016
+ *Version*: 1.3.0
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage admin.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage dashboard.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_document.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_documents.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preacher.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preachers.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series_list.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermon.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermons.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistic.css

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistics.css

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage controller.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage ajax.json.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help.php
@ -114,10 +114,10 @@ class SermondistributorControllerHelp extends JControllerLegacy
$text[] = '<div class="uk-container uk-container-center uk-grid-collapse">';
$text[] = '<div class="uk-panel uk-width-1-1 uk-panel-box uk-panel-box-primary">';
// build the help text
$text[] = '<h3 class="uk-panel-title">'.$document->title."</h3>";
$text[] = '<h1 class="uk-panel-title">'.$document->title."</h1>";
$text[] = str_replace(array_keys($images),array_values($images),$document->content);
// end template
$text[] = '</div>';
$text[] = '</div><br /><br />';
$text[] = '</div>';
$text[] = "</body>";
$text[] = "</html>";

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_document.php
@ -60,13 +60,13 @@ class SermondistributorControllerHelp_document extends JControllerForm
*/
protected function allowAdd($data = array())
{
// [Interpretation 8485] Access check.
// [Interpretation 8488] Access check.
$access = JFactory::getUser()->authorise('help_document.access', 'com_sermondistributor');
if (!$access)
{
return false;
}
// [Interpretation 8496] In the absense of better information, revert to the component permissions.
// [Interpretation 8499] In the absense of better information, revert to the component permissions.
return JFactory::getUser()->authorise('help_document.create', $this->option);
}
@ -82,13 +82,13 @@ class SermondistributorControllerHelp_document extends JControllerForm
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8639] get user object.
// [Interpretation 8642] get user object.
$user = JFactory::getUser();
// [Interpretation 8641] get record id.
// [Interpretation 8644] get record id.
$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
// [Interpretation 8648] Access check.
// [Interpretation 8651] Access check.
$access = ($user->authorise('help_document.access', 'com_sermondistributor.help_document.' . (int) $recordId) && $user->authorise('help_document.access', 'com_sermondistributor'));
if (!$access)
{
@ -97,17 +97,17 @@ class SermondistributorControllerHelp_document extends JControllerForm
if ($recordId)
{
// [Interpretation 8657] The record has been set. Check the record permissions.
// [Interpretation 8660] The record has been set. Check the record permissions.
$permission = $user->authorise('help_document.edit', 'com_sermondistributor.help_document.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
if ($user->authorise('help_document.edit.own', 'com_sermondistributor.help_document.' . $recordId))
{
// [Interpretation 8679] Now test the owner is the user.
// [Interpretation 8682] Now test the owner is the user.
$ownerId = (int) isset($data['created_by']) ? $data['created_by'] : 0;
if (empty($ownerId))
{
// [Interpretation 8683] Need to do a lookup from the model.
// [Interpretation 8686] Need to do a lookup from the model.
$record = $this->getModel()->getItem($recordId);
if (empty($record))
@ -117,7 +117,7 @@ class SermondistributorControllerHelp_document extends JControllerForm
$ownerId = $record->created_by;
}
// [Interpretation 8691] If the owner matches 'me' then allow.
// [Interpretation 8694] If the owner matches 'me' then allow.
if ($ownerId == $user->id)
{
if ($user->authorise('help_document.edit.own', 'com_sermondistributor'))
@ -129,7 +129,7 @@ class SermondistributorControllerHelp_document extends JControllerForm
return false;
}
}
// [Interpretation 8713] Since there is no permission, revert to the component permissions.
// [Interpretation 8716] Since there is no permission, revert to the component permissions.
return $user->authorise('help_document.edit', $this->option);
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_documents.php
@ -48,29 +48,29 @@ class SermondistributorControllerHelp_documents extends JControllerAdmin
public function exportData()
{
// [Interpretation 6553] Check for request forgeries
// [Interpretation 6556] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6555] check if export is allowed for this user.
// [Interpretation 6558] check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('help_document.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
{
// [Interpretation 6559] Get the input
// [Interpretation 6562] Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// [Interpretation 6562] Sanitize the input
// [Interpretation 6565] Sanitize the input
JArrayHelper::toInteger($pks);
// [Interpretation 6564] Get the model
// [Interpretation 6567] Get the model
$model = $this->getModel('Help_documents');
// [Interpretation 6566] get the data to export
// [Interpretation 6569] get the data to export
$data = $model->getExportData($pks);
if (SermondistributorHelper::checkArray($data))
{
// [Interpretation 6570] now set the data to the spreadsheet
// [Interpretation 6573] now set the data to the spreadsheet
$date = JFactory::getDate();
SermondistributorHelper::xls($data,'Help_documents_'.$date->format('jS_F_Y'),'Help documents exported ('.$date->format('jS F, Y').')','help documents');
}
}
// [Interpretation 6575] Redirect to the list screen with error.
// [Interpretation 6578] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=help_documents', false), $message, 'error');
return;
@ -79,31 +79,31 @@ class SermondistributorControllerHelp_documents extends JControllerAdmin
public function importData()
{
// [Interpretation 6584] Check for request forgeries
// [Interpretation 6587] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6586] check if import is allowed for this user.
// [Interpretation 6589] check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('help_document.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
{
// [Interpretation 6590] Get the import model
// [Interpretation 6593] Get the import model
$model = $this->getModel('Help_documents');
// [Interpretation 6592] get the headers to import
// [Interpretation 6595] get the headers to import
$headers = $model->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
// [Interpretation 6596] Load headers to session.
// [Interpretation 6599] Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('help_document_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'help_documents');
$session->set('dataType_VDM_IMPORTINTO', 'help_document');
// [Interpretation 6602] Redirect to import view.
// [Interpretation 6605] Redirect to import view.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_HELP_DOCUMENTS');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
return;
}
}
// [Interpretation 6614] Redirect to the list screen with error.
// [Interpretation 6617] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=help_documents', false), $message, 'error');
return;

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage import.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preacher.php
@ -60,13 +60,13 @@ class SermondistributorControllerPreacher extends JControllerForm
*/
protected function allowAdd($data = array())
{
// [Interpretation 8485] Access check.
// [Interpretation 8488] Access check.
$access = JFactory::getUser()->authorise('preacher.access', 'com_sermondistributor');
if (!$access)
{
return false;
}
// [Interpretation 8496] In the absense of better information, revert to the component permissions.
// [Interpretation 8499] In the absense of better information, revert to the component permissions.
return JFactory::getUser()->authorise('preacher.create', $this->option);
}
@ -82,13 +82,13 @@ class SermondistributorControllerPreacher extends JControllerForm
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8639] get user object.
// [Interpretation 8642] get user object.
$user = JFactory::getUser();
// [Interpretation 8641] get record id.
// [Interpretation 8644] get record id.
$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
// [Interpretation 8648] Access check.
// [Interpretation 8651] Access check.
$access = ($user->authorise('preacher.access', 'com_sermondistributor.preacher.' . (int) $recordId) && $user->authorise('preacher.access', 'com_sermondistributor'));
if (!$access)
{
@ -97,17 +97,17 @@ class SermondistributorControllerPreacher extends JControllerForm
if ($recordId)
{
// [Interpretation 8657] The record has been set. Check the record permissions.
// [Interpretation 8660] The record has been set. Check the record permissions.
$permission = $user->authorise('preacher.edit', 'com_sermondistributor.preacher.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
if ($user->authorise('preacher.edit.own', 'com_sermondistributor.preacher.' . $recordId))
{
// [Interpretation 8679] Now test the owner is the user.
// [Interpretation 8682] Now test the owner is the user.
$ownerId = (int) isset($data['created_by']) ? $data['created_by'] : 0;
if (empty($ownerId))
{
// [Interpretation 8683] Need to do a lookup from the model.
// [Interpretation 8686] Need to do a lookup from the model.
$record = $this->getModel()->getItem($recordId);
if (empty($record))
@ -117,7 +117,7 @@ class SermondistributorControllerPreacher extends JControllerForm
$ownerId = $record->created_by;
}
// [Interpretation 8691] If the owner matches 'me' then allow.
// [Interpretation 8694] If the owner matches 'me' then allow.
if ($ownerId == $user->id)
{
if ($user->authorise('preacher.edit.own', 'com_sermondistributor'))
@ -129,7 +129,7 @@ class SermondistributorControllerPreacher extends JControllerForm
return false;
}
}
// [Interpretation 8713] Since there is no permission, revert to the component permissions.
// [Interpretation 8716] Since there is no permission, revert to the component permissions.
return $user->authorise('preacher.edit', $this->option);
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preachers.php
@ -48,29 +48,29 @@ class SermondistributorControllerPreachers extends JControllerAdmin
public function exportData()
{
// [Interpretation 6553] Check for request forgeries
// [Interpretation 6556] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6555] check if export is allowed for this user.
// [Interpretation 6558] check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('preacher.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
{
// [Interpretation 6559] Get the input
// [Interpretation 6562] Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// [Interpretation 6562] Sanitize the input
// [Interpretation 6565] Sanitize the input
JArrayHelper::toInteger($pks);
// [Interpretation 6564] Get the model
// [Interpretation 6567] Get the model
$model = $this->getModel('Preachers');
// [Interpretation 6566] get the data to export
// [Interpretation 6569] get the data to export
$data = $model->getExportData($pks);
if (SermondistributorHelper::checkArray($data))
{
// [Interpretation 6570] now set the data to the spreadsheet
// [Interpretation 6573] now set the data to the spreadsheet
$date = JFactory::getDate();
SermondistributorHelper::xls($data,'Preachers_'.$date->format('jS_F_Y'),'Preachers exported ('.$date->format('jS F, Y').')','preachers');
}
}
// [Interpretation 6575] Redirect to the list screen with error.
// [Interpretation 6578] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=preachers', false), $message, 'error');
return;
@ -79,31 +79,31 @@ class SermondistributorControllerPreachers extends JControllerAdmin
public function importData()
{
// [Interpretation 6584] Check for request forgeries
// [Interpretation 6587] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6586] check if import is allowed for this user.
// [Interpretation 6589] check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('preacher.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
{
// [Interpretation 6590] Get the import model
// [Interpretation 6593] Get the import model
$model = $this->getModel('Preachers');
// [Interpretation 6592] get the headers to import
// [Interpretation 6595] get the headers to import
$headers = $model->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
// [Interpretation 6596] Load headers to session.
// [Interpretation 6599] Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('preacher_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'preachers');
$session->set('dataType_VDM_IMPORTINTO', 'preacher');
// [Interpretation 6602] Redirect to import view.
// [Interpretation 6605] Redirect to import view.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_PREACHERS');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
return;
}
}
// [Interpretation 6614] Redirect to the list screen with error.
// [Interpretation 6617] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=preachers', false), $message, 'error');
return;

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.php
@ -60,13 +60,13 @@ class SermondistributorControllerSeries extends JControllerForm
*/
protected function allowAdd($data = array())
{
// [Interpretation 8485] Access check.
// [Interpretation 8488] Access check.
$access = JFactory::getUser()->authorise('series.access', 'com_sermondistributor');
if (!$access)
{
return false;
}
// [Interpretation 8496] In the absense of better information, revert to the component permissions.
// [Interpretation 8499] In the absense of better information, revert to the component permissions.
return JFactory::getUser()->authorise('series.create', $this->option);
}
@ -82,13 +82,13 @@ class SermondistributorControllerSeries extends JControllerForm
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8639] get user object.
// [Interpretation 8642] get user object.
$user = JFactory::getUser();
// [Interpretation 8641] get record id.
// [Interpretation 8644] get record id.
$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
// [Interpretation 8648] Access check.
// [Interpretation 8651] Access check.
$access = ($user->authorise('series.access', 'com_sermondistributor.series.' . (int) $recordId) && $user->authorise('series.access', 'com_sermondistributor'));
if (!$access)
{
@ -97,17 +97,17 @@ class SermondistributorControllerSeries extends JControllerForm
if ($recordId)
{
// [Interpretation 8657] The record has been set. Check the record permissions.
// [Interpretation 8660] The record has been set. Check the record permissions.
$permission = $user->authorise('series.edit', 'com_sermondistributor.series.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
if ($user->authorise('series.edit.own', 'com_sermondistributor.series.' . $recordId))
{
// [Interpretation 8679] Now test the owner is the user.
// [Interpretation 8682] Now test the owner is the user.
$ownerId = (int) isset($data['created_by']) ? $data['created_by'] : 0;
if (empty($ownerId))
{
// [Interpretation 8683] Need to do a lookup from the model.
// [Interpretation 8686] Need to do a lookup from the model.
$record = $this->getModel()->getItem($recordId);
if (empty($record))
@ -117,7 +117,7 @@ class SermondistributorControllerSeries extends JControllerForm
$ownerId = $record->created_by;
}
// [Interpretation 8691] If the owner matches 'me' then allow.
// [Interpretation 8694] If the owner matches 'me' then allow.
if ($ownerId == $user->id)
{
if ($user->authorise('series.edit.own', 'com_sermondistributor'))
@ -129,7 +129,7 @@ class SermondistributorControllerSeries extends JControllerForm
return false;
}
}
// [Interpretation 8713] Since there is no permission, revert to the component permissions.
// [Interpretation 8716] Since there is no permission, revert to the component permissions.
return $user->authorise('series.edit', $this->option);
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series_list.php
@ -48,29 +48,29 @@ class SermondistributorControllerSeries_list extends JControllerAdmin
public function exportData()
{
// [Interpretation 6553] Check for request forgeries
// [Interpretation 6556] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6555] check if export is allowed for this user.
// [Interpretation 6558] check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('series.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
{
// [Interpretation 6559] Get the input
// [Interpretation 6562] Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// [Interpretation 6562] Sanitize the input
// [Interpretation 6565] Sanitize the input
JArrayHelper::toInteger($pks);
// [Interpretation 6564] Get the model
// [Interpretation 6567] Get the model
$model = $this->getModel('Series_list');
// [Interpretation 6566] get the data to export
// [Interpretation 6569] get the data to export
$data = $model->getExportData($pks);
if (SermondistributorHelper::checkArray($data))
{
// [Interpretation 6570] now set the data to the spreadsheet
// [Interpretation 6573] now set the data to the spreadsheet
$date = JFactory::getDate();
SermondistributorHelper::xls($data,'Series_list_'.$date->format('jS_F_Y'),'Series list exported ('.$date->format('jS F, Y').')','series list');
}
}
// [Interpretation 6575] Redirect to the list screen with error.
// [Interpretation 6578] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=series_list', false), $message, 'error');
return;
@ -79,31 +79,31 @@ class SermondistributorControllerSeries_list extends JControllerAdmin
public function importData()
{
// [Interpretation 6584] Check for request forgeries
// [Interpretation 6587] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6586] check if import is allowed for this user.
// [Interpretation 6589] check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('series.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
{
// [Interpretation 6590] Get the import model
// [Interpretation 6593] Get the import model
$model = $this->getModel('Series_list');
// [Interpretation 6592] get the headers to import
// [Interpretation 6595] get the headers to import
$headers = $model->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
// [Interpretation 6596] Load headers to session.
// [Interpretation 6599] Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('series_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'series_list');
$session->set('dataType_VDM_IMPORTINTO', 'series');
// [Interpretation 6602] Redirect to import view.
// [Interpretation 6605] Redirect to import view.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_SERIES_LIST');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
return;
}
}
// [Interpretation 6614] Redirect to the list screen with error.
// [Interpretation 6617] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=series_list', false), $message, 'error');
return;

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermon.php
@ -60,10 +60,10 @@ class SermondistributorControllerSermon extends JControllerForm
*/
protected function allowAdd($data = array())
{
// [Interpretation 8440] get the user object
// [Interpretation 8443] get the user object
$user = JFactory::getUser();
// [Interpretation 8445] Access check.
// [Interpretation 8448] Access check.
$access = $user->authorise('sermon.access', 'com_sermondistributor');
if (!$access)
{
@ -74,13 +74,13 @@ class SermondistributorControllerSermon extends JControllerForm
if ($categoryId)
{
// [Interpretation 8456] If the category has been passed in the URL check it.
// [Interpretation 8459] If the category has been passed in the URL check it.
$allow = $user->authorise('core.create', $this->option . '.sermons.category.' . $categoryId);
}
if ($allow === null)
{
// [Interpretation 8465] In the absense of better information, revert to the component permissions.
// [Interpretation 8468] In the absense of better information, revert to the component permissions.
return $user->authorise('sermon.create', $this->option);
}
else
@ -100,13 +100,13 @@ class SermondistributorControllerSermon extends JControllerForm
* @since 1.6
*/
protected function allowEdit($data = array(), $key = 'id')
{ // [Interpretation 8543] get user object.
{ // [Interpretation 8546] get user object.
$user = JFactory::getUser();
// [Interpretation 8545] get record id.
// [Interpretation 8548] get record id.
$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
// [Interpretation 8552] Access check.
// [Interpretation 8555] Access check.
$access = ($user->authorise('sermon.access', 'com_sermondistributor.sermon.' . (int) $recordId) && $user->authorise('sermon.access', 'com_sermondistributor'));
if (!$access)
{
@ -115,17 +115,17 @@ class SermondistributorControllerSermon extends JControllerForm
if ($recordId)
{
// [Interpretation 8561] The record has been set. Check the record permissions.
// [Interpretation 8564] The record has been set. Check the record permissions.
$permission = $user->authorise('sermon.edit', 'com_sermondistributor.sermon.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
if ($user->authorise('sermon.edit.own', 'com_sermondistributor.sermon.' . $recordId))
{
// [Interpretation 8583] Fallback on edit.own. Now test the owner is the user.
// [Interpretation 8586] Fallback on edit.own. Now test the owner is the user.
$ownerId = (int) isset($data['created_by']) ? $data['created_by'] : 0;
if (empty($ownerId))
{
// [Interpretation 8587] Need to do a lookup from the model.
// [Interpretation 8590] Need to do a lookup from the model.
$record = $this->getModel()->getItem($recordId);
if (empty($record))
@ -135,7 +135,7 @@ class SermondistributorControllerSermon extends JControllerForm
$ownerId = $record->created_by;
}
// [Interpretation 8595] If the owner matches 'me' then do the test.
// [Interpretation 8598] If the owner matches 'me' then do the test.
if ($ownerId == $user->id)
{
if ($user->authorise('sermon.edit.own', 'com_sermondistributor'))
@ -151,7 +151,7 @@ class SermondistributorControllerSermon extends JControllerForm
if ($categoryId)
{
// [Interpretation 8617] The category has been set. Check the category permissions.
// [Interpretation 8620] The category has been set. Check the category permissions.
$catpermission = $user->authorise('core.edit', $this->option . '.sermons.category.' . $categoryId);
if (!$catpermission && !is_null($catpermission))
{
@ -159,7 +159,7 @@ class SermondistributorControllerSermon extends JControllerForm
}
}
}
// [Interpretation 8627] Since there is no permission, revert to the component permissions.
// [Interpretation 8630] Since there is no permission, revert to the component permissions.
return $user->authorise('sermon.edit', $this->option);
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermondistributor.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermons.php
@ -48,29 +48,29 @@ class SermondistributorControllerSermons extends JControllerAdmin
public function exportData()
{
// [Interpretation 6553] Check for request forgeries
// [Interpretation 6556] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6555] check if export is allowed for this user.
// [Interpretation 6558] check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('sermon.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
{
// [Interpretation 6559] Get the input
// [Interpretation 6562] Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// [Interpretation 6562] Sanitize the input
// [Interpretation 6565] Sanitize the input
JArrayHelper::toInteger($pks);
// [Interpretation 6564] Get the model
// [Interpretation 6567] Get the model
$model = $this->getModel('Sermons');
// [Interpretation 6566] get the data to export
// [Interpretation 6569] get the data to export
$data = $model->getExportData($pks);
if (SermondistributorHelper::checkArray($data))
{
// [Interpretation 6570] now set the data to the spreadsheet
// [Interpretation 6573] now set the data to the spreadsheet
$date = JFactory::getDate();
SermondistributorHelper::xls($data,'Sermons_'.$date->format('jS_F_Y'),'Sermons exported ('.$date->format('jS F, Y').')','sermons');
}
}
// [Interpretation 6575] Redirect to the list screen with error.
// [Interpretation 6578] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=sermons', false), $message, 'error');
return;
@ -79,31 +79,31 @@ class SermondistributorControllerSermons extends JControllerAdmin
public function importData()
{
// [Interpretation 6584] Check for request forgeries
// [Interpretation 6587] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6586] check if import is allowed for this user.
// [Interpretation 6589] check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('sermon.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
{
// [Interpretation 6590] Get the import model
// [Interpretation 6593] Get the import model
$model = $this->getModel('Sermons');
// [Interpretation 6592] get the headers to import
// [Interpretation 6595] get the headers to import
$headers = $model->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
// [Interpretation 6596] Load headers to session.
// [Interpretation 6599] Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('sermon_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'sermons');
$session->set('dataType_VDM_IMPORTINTO', 'sermon');
// [Interpretation 6602] Redirect to import view.
// [Interpretation 6605] Redirect to import view.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_SERMONS');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
return;
}
}
// [Interpretation 6614] Redirect to the list screen with error.
// [Interpretation 6617] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=sermons', false), $message, 'error');
return;

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistic.php
@ -60,13 +60,13 @@ class SermondistributorControllerStatistic extends JControllerForm
*/
protected function allowAdd($data = array())
{
// [Interpretation 8485] Access check.
// [Interpretation 8488] Access check.
$access = JFactory::getUser()->authorise('statistic.access', 'com_sermondistributor');
if (!$access)
{
return false;
}
// [Interpretation 8496] In the absense of better information, revert to the component permissions.
// [Interpretation 8499] In the absense of better information, revert to the component permissions.
return JFactory::getUser()->authorise('statistic.create', $this->option);
}
@ -82,13 +82,13 @@ class SermondistributorControllerStatistic extends JControllerForm
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8639] get user object.
// [Interpretation 8642] get user object.
$user = JFactory::getUser();
// [Interpretation 8641] get record id.
// [Interpretation 8644] get record id.
$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
// [Interpretation 8648] Access check.
// [Interpretation 8651] Access check.
$access = ($user->authorise('statistic.access', 'com_sermondistributor.statistic.' . (int) $recordId) && $user->authorise('statistic.access', 'com_sermondistributor'));
if (!$access)
{
@ -97,17 +97,17 @@ class SermondistributorControllerStatistic extends JControllerForm
if ($recordId)
{
// [Interpretation 8657] The record has been set. Check the record permissions.
// [Interpretation 8660] The record has been set. Check the record permissions.
$permission = $user->authorise('statistic.edit', 'com_sermondistributor.statistic.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
if ($user->authorise('statistic.edit.own', 'com_sermondistributor.statistic.' . $recordId))
{
// [Interpretation 8679] Now test the owner is the user.
// [Interpretation 8682] Now test the owner is the user.
$ownerId = (int) isset($data['created_by']) ? $data['created_by'] : 0;
if (empty($ownerId))
{
// [Interpretation 8683] Need to do a lookup from the model.
// [Interpretation 8686] Need to do a lookup from the model.
$record = $this->getModel()->getItem($recordId);
if (empty($record))
@ -117,7 +117,7 @@ class SermondistributorControllerStatistic extends JControllerForm
$ownerId = $record->created_by;
}
// [Interpretation 8691] If the owner matches 'me' then allow.
// [Interpretation 8694] If the owner matches 'me' then allow.
if ($ownerId == $user->id)
{
if ($user->authorise('statistic.edit.own', 'com_sermondistributor'))
@ -129,7 +129,7 @@ class SermondistributorControllerStatistic extends JControllerForm
return false;
}
}
// [Interpretation 8713] Since there is no permission, revert to the component permissions.
// [Interpretation 8716] Since there is no permission, revert to the component permissions.
return $user->authorise('statistic.edit', $this->option);
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistics.php
@ -48,29 +48,29 @@ class SermondistributorControllerStatistics extends JControllerAdmin
public function exportData()
{
// [Interpretation 6553] Check for request forgeries
// [Interpretation 6556] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6555] check if export is allowed for this user.
// [Interpretation 6558] check if export is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('statistic.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
{
// [Interpretation 6559] Get the input
// [Interpretation 6562] Get the input
$input = JFactory::getApplication()->input;
$pks = $input->post->get('cid', array(), 'array');
// [Interpretation 6562] Sanitize the input
// [Interpretation 6565] Sanitize the input
JArrayHelper::toInteger($pks);
// [Interpretation 6564] Get the model
// [Interpretation 6567] Get the model
$model = $this->getModel('Statistics');
// [Interpretation 6566] get the data to export
// [Interpretation 6569] get the data to export
$data = $model->getExportData($pks);
if (SermondistributorHelper::checkArray($data))
{
// [Interpretation 6570] now set the data to the spreadsheet
// [Interpretation 6573] now set the data to the spreadsheet
$date = JFactory::getDate();
SermondistributorHelper::xls($data,'Statistics_'.$date->format('jS_F_Y'),'Statistics exported ('.$date->format('jS F, Y').')','statistics');
}
}
// [Interpretation 6575] Redirect to the list screen with error.
// [Interpretation 6578] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=statistics', false), $message, 'error');
return;
@ -79,31 +79,31 @@ class SermondistributorControllerStatistics extends JControllerAdmin
public function importData()
{
// [Interpretation 6584] Check for request forgeries
// [Interpretation 6587] Check for request forgeries
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
// [Interpretation 6586] check if import is allowed for this user.
// [Interpretation 6589] check if import is allowed for this user.
$user = JFactory::getUser();
if ($user->authorise('statistic.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
{
// [Interpretation 6590] Get the import model
// [Interpretation 6593] Get the import model
$model = $this->getModel('Statistics');
// [Interpretation 6592] get the headers to import
// [Interpretation 6595] get the headers to import
$headers = $model->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
// [Interpretation 6596] Load headers to session.
// [Interpretation 6599] Load headers to session.
$session = JFactory::getSession();
$headers = json_encode($headers);
$session->set('statistic_VDM_IMPORTHEADERS', $headers);
$session->set('backto_VDM_IMPORT', 'statistics');
$session->set('dataType_VDM_IMPORTINTO', 'statistic');
// [Interpretation 6602] Redirect to import view.
// [Interpretation 6605] Redirect to import view.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_STATISTICS');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
return;
}
}
// [Interpretation 6614] Redirect to the list screen with error.
// [Interpretation 6617] Redirect to the list screen with error.
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=statistics', false), $message, 'error');
return;

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage batch_.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermondistributor.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage batchselection.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_above.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_left.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_right.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_under.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage metadata.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage publishing.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_above.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_left.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_right.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage metadata.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage publishing.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermons_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_above.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_left.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_right.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage metadata.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage publishing.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermons_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_above.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_left.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_right.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_under.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage files_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage metadata.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage publishing.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage stastics_fullwidth.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_above.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_left.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage details_right.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage metadata.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage publishing.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage ajax.php
@ -43,7 +43,7 @@ class SermondistributorModelAjax extends JModelList
}
// [Interpretation 8082] Used in sermon
// [Interpretation 8085] Used in sermon
/**
* Check and Set Dropbox local listing
**/

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage articles.php
@ -50,36 +50,36 @@ class JFormFieldArticles extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create article
// [Interpretation 6868] only add if user allowed to create article
if ($user->authorise('core.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=article&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage dropboxfiles.php
@ -50,36 +50,36 @@ class JFormFieldDropboxfiles extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create
// [Interpretation 6868] only add if user allowed to create
if ($user->authorise('core.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage localfiles.php
@ -50,36 +50,36 @@ class JFormFieldLocalfiles extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create
// [Interpretation 6868] only add if user allowed to create
if ($user->authorise('core.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preachers.php
@ -50,36 +50,36 @@ class JFormFieldPreachers extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create preacher
// [Interpretation 6868] only add if user allowed to create preacher
if ($user->authorise('preacher.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=preacher&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.php
@ -50,36 +50,36 @@ class JFormFieldSeries extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create series
// [Interpretation 6868] only add if user allowed to create series
if ($user->authorise('series.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=series&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermon.php
@ -50,36 +50,36 @@ class JFormFieldSermon extends JFormFieldList
*/
protected function getInput()
{
// [Interpretation 6857] see if we should add buttons
// [Interpretation 6860] see if we should add buttons
$setButton = $this->getAttribute('button');
// [Interpretation 6859] get html
// [Interpretation 6862] get html
$html = parent::getInput();
// [Interpretation 6861] if true set button
// [Interpretation 6864] if true set button
if ($setButton === 'true')
{
$user = JFactory::getUser();
// [Interpretation 6865] only add if user allowed to create sermon
// [Interpretation 6868] only add if user allowed to create sermon
if ($user->authorise('sermon.create', 'com_sermondistributor'))
{
// [Interpretation 6883] get the input from url
// [Interpretation 6886] get the input from url
$jinput = JFactory::getApplication()->input;
// [Interpretation 6885] get the view name & id
// [Interpretation 6888] get the view name & id
$values = $jinput->getArray(array(
'id' => 'int',
'view' => 'word'
));
// [Interpretation 6890] check if new item
// [Interpretation 6893] check if new item
$ref = '';
if (!is_null($values['id']) && strlen($values['view']))
{
// [Interpretation 6894] only load referal if not new item.
// [Interpretation 6897] only load referal if not new item.
$ref = '&amp;ref=' . $values['view'] . '&amp;refid=' . $values['id'];
}
// [Interpretation 6897] build the button
// [Interpretation 6900] build the button
$button = '<a class="btn btn-small btn-success"
href="index.php?option=com_sermondistributor&amp;view=sermon&amp;layout=edit'.$ref.'" >
<span class="icon-new icon-white"></span>' . JText::_('COM_SERMONDISTRIBUTOR_NEW') . '</a>';
// [Interpretation 6901] return the button attached to input field
// [Interpretation 6904] return the button attached to input field
return $html . $button;
}
}

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_document.js
@ -53,7 +53,7 @@ jQuery(document).ready(function()
// the vvvvvwe function
function vvvvvwe(location_vvvvvwe)
{
// [Interpretation 7174] set the function logic
// [Interpretation 7177] set the function logic
if (location_vvvvvwe == 1)
{
jQuery('#jform_admin_view').closest('.control-group').show();
@ -67,7 +67,7 @@ function vvvvvwe(location_vvvvvwe)
// the vvvvvwf function
function vvvvvwf(location_vvvvvwf)
{
// [Interpretation 7174] set the function logic
// [Interpretation 7177] set the function logic
if (location_vvvvvwf == 2)
{
jQuery('#jform_site_view').closest('.control-group').show();
@ -94,7 +94,7 @@ function vvvvvwg(type_vvvvvwg)
var type = type_vvvvvwg.some(type_vvvvvwg_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (type)
{
jQuery('#jform_url').closest('.control-group').show();
@ -125,7 +125,7 @@ function vvvvvwg(type_vvvvvwg)
// the vvvvvwg Some function
function type_vvvvvwg_SomeFunc(type_vvvvvwg)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (type_vvvvvwg == 3)
{
return true;
@ -149,7 +149,7 @@ function vvvvvwh(type_vvvvvwh)
var type = type_vvvvvwh.some(type_vvvvvwh_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (type)
{
jQuery('#jform_article').closest('.control-group').show();
@ -180,7 +180,7 @@ function vvvvvwh(type_vvvvvwh)
// the vvvvvwh Some function
function type_vvvvvwh_SomeFunc(type_vvvvvwh)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (type_vvvvvwh == 1)
{
return true;
@ -204,7 +204,7 @@ function vvvvvwi(type_vvvvvwi)
var type = type_vvvvvwi.some(type_vvvvvwi_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (type)
{
jQuery('#jform_content-lbl').closest('.control-group').show();
@ -235,7 +235,7 @@ function vvvvvwi(type_vvvvvwi)
// the vvvvvwi Some function
function type_vvvvvwi_SomeFunc(type_vvvvvwi)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (type_vvvvvwi == 2)
{
return true;
@ -246,7 +246,7 @@ function type_vvvvvwi_SomeFunc(type_vvvvvwi)
// the vvvvvwj function
function vvvvvwj(target_vvvvvwj)
{
// [Interpretation 7174] set the function logic
// [Interpretation 7177] set the function logic
if (target_vvvvvwj == 1)
{
jQuery('#jform_groups').closest('.control-group').show();

View File

@ -4,15 +4,15 @@
addfieldpath="/administrator/components/com_sermondistributor/models/fields"
>
<fieldset name="details">
<!-- [Interpretation 382] Default Fields. -->
<!-- [Interpretation 383] Id Field. Type: Text (joomla) -->
<!-- [Interpretation 383] Default Fields. -->
<!-- [Interpretation 384] Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- [Interpretation 390] Date Created Field. Type: Calendar (joomla) -->
<!-- [Interpretation 391] Date Created Field. Type: Calendar (joomla) -->
<field
name="created"
type="calendar"
@ -22,14 +22,14 @@
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- [Interpretation 401] User Created Field. Type: User (joomla) -->
<!-- [Interpretation 402] User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_CREATED_BY_LABEL"
description="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_CREATED_BY_DESC"
/>
<!-- [Interpretation 409] Published Field. Type: List (joomla) -->
<!-- [Interpretation 410] Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
filter="intval" size="1" default="1" >
@ -42,18 +42,18 @@
<option value="-2">
JTRASHED</option>
</field>
<!-- [Interpretation 424] Date Modified Field. Type: Calendar (joomla) -->
<!-- [Interpretation 425] Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="JGLOBAL_FIELD_MODIFIED_LABEL" description="COM_CONTENT_FIELD_MODIFIED_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- [Interpretation 428] User Modified Field. Type: User (joomla) -->
<!-- [Interpretation 429] User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- [Interpretation 438] Access Field. Type: Accesslevel (joomla) -->
<!-- [Interpretation 439] Access Field. Type: Accesslevel (joomla) -->
<field name="access"
type="accesslevel"
label="JFIELD_ACCESS_LABEL"
@ -61,7 +61,7 @@
default="1"
required="false"
/>
<!-- [Interpretation 448] Ordering Field. Type: Numbers (joomla) -->
<!-- [Interpretation 449] Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
@ -72,7 +72,7 @@
size="6"
required="false"
/>
<!-- [Interpretation 460] Version Field. Type: Text (joomla) -->
<!-- [Interpretation 461] Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
@ -83,7 +83,7 @@
readonly="true"
filter="unset"
/>
<!-- [Interpretation 474] Metakey Field. Type: Textarea (joomla) -->
<!-- [Interpretation 475] Metakey Field. Type: Textarea (joomla) -->
<field
name="metakey"
type="textarea"
@ -92,7 +92,7 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 483] Metadesc Field. Type: Textarea (joomla) -->
<!-- [Interpretation 484] Metadesc Field. Type: Textarea (joomla) -->
<field
name="metadesc"
type="textarea"
@ -101,8 +101,8 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 493] Dynamic Fields. -->
<!-- [Interpretation 762] Title Field. Type: Text. (joomla) -->
<!-- [Interpretation 494] Dynamic Fields. -->
<!-- [Interpretation 763] Title Field. Type: Text. (joomla) -->
<field
type="text"
name="title"
@ -118,7 +118,7 @@
message="Error! Please add title here."
hint="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_TITLE_HINT"
/>
<!-- [Interpretation 677] Type Field. Type: List. (joomla) -->
<!-- [Interpretation 678] Type Field. Type: List. (joomla) -->
<field
type="list"
name="type"
@ -127,7 +127,7 @@
class="list_class"
multiple="false"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_SELECT_AN_OPTION</option>
<option value="1">
@ -137,7 +137,7 @@
<option value="3">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_URL</option>
</field>
<!-- [Interpretation 762] Groups Field. Type: Usergroup. (joomla) -->
<!-- [Interpretation 763] Groups Field. Type: Usergroup. (joomla) -->
<field
type="usergroup"
name="groups"
@ -146,7 +146,7 @@
required="true"
multiple="true"
/>
<!-- [Interpretation 677] Location Field. Type: Radio. (joomla) -->
<!-- [Interpretation 678] Location Field. Type: Radio. (joomla) -->
<field
type="radio"
name="location"
@ -154,13 +154,13 @@
description="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_LOCATION_DESCRIPTION"
class="btn-group"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="1">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_ADMIN</option>
<option value="2">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_SITE</option>
</field>
<!-- [Interpretation 762] Admin_view Field. Type: Folderlist. (joomla) -->
<!-- [Interpretation 763] Admin_view Field. Type: Folderlist. (joomla) -->
<field
type="folderlist"
name="admin_view"
@ -170,7 +170,7 @@
hide_none="true"
hide_default="true"
/>
<!-- [Interpretation 762] Site_view Field. Type: Folderlist. (joomla) -->
<!-- [Interpretation 763] Site_view Field. Type: Folderlist. (joomla) -->
<field
type="folderlist"
name="site_view"
@ -180,7 +180,7 @@
hide_none="true"
hide_default="true"
/>
<!-- [Interpretation 677] Target Field. Type: Radio. (joomla) -->
<!-- [Interpretation 678] Target Field. Type: Radio. (joomla) -->
<field
type="radio"
name="target"
@ -188,13 +188,13 @@
description="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_TARGET_DESCRIPTION"
class="btn-group"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="1">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_SOME</option>
<option value="2">
COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_ALL</option>
</field>
<!-- [Interpretation 762] Content Field. Type: Editor. (joomla) -->
<!-- [Interpretation 763] Content Field. Type: Editor. (joomla) -->
<field
type="editor"
name="content"
@ -205,7 +205,7 @@
filter="safehtml"
required="true"
/>
<!-- [Interpretation 762] Alias Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Alias Field. Type: Text. (joomla) -->
<field
type="text"
name="alias"
@ -214,7 +214,7 @@
filter="STRING"
hint="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_ALIAS_HINT"
/>
<!-- [Interpretation 883] Article Field. Type: Articles. (custom) -->
<!-- [Interpretation 884] Article Field. Type: Articles. (custom) -->
<field
type="articles"
name="article"
@ -224,7 +224,7 @@
default="0"
required="true"
/>
<!-- [Interpretation 762] Url Field. Type: Url. (joomla) -->
<!-- [Interpretation 763] Url Field. Type: Url. (joomla) -->
<field
type="url"
name="url"
@ -239,7 +239,7 @@
message="Error! Please add url here."
hint="COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_URL_HINT"
/>
<!-- [Interpretation 762] Not_required Field. Type: Hidden. (joomla) -->
<!-- [Interpretation 763] Not_required Field. Type: Hidden. (joomla) -->
<field
type="hidden"
name="not_required"
@ -247,11 +247,11 @@
/>
</fieldset>
<!-- [Interpretation 512] Metadata Fields. -->
<!-- [Interpretation 513] Metadata Fields. -->
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<fieldset name="vdmmetadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<!-- [Interpretation 516] Robots Field. Type: List (joomla) -->
<!-- [Interpretation 517] Robots Field. Type: List (joomla) -->
<field name="robots"
type="list"
label="JFIELD_METADATA_ROBOTS_LABEL"
@ -262,13 +262,13 @@
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
</field>
<!-- [Interpretation 527] Author Field. Type: Text (joomla) -->
<!-- [Interpretation 528] Author Field. Type: Text (joomla) -->
<field name="author"
type="text"
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
size="20"
/>
<!-- [Interpretation 533] Rights Field. Type: Textarea (joomla) -->
<!-- [Interpretation 534] Rights Field. Type: Textarea (joomla) -->
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
cols="30" rows="2"
@ -276,15 +276,15 @@
</fieldset>
</fields>
<!-- [Interpretation 9242] Access Control Fields. -->
<!-- [Interpretation 9245] Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- [Interpretation 9244] Asset Id Field. Type: Hidden (joomla) -->
<!-- [Interpretation 9247] Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- [Interpretation 9250] Rules Field. Type: Rules (joomla) -->
<!-- [Interpretation 9253] Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preacher.js

View File

@ -4,15 +4,15 @@
addfieldpath="/administrator/components/com_sermondistributor/models/fields"
>
<fieldset name="details">
<!-- [Interpretation 382] Default Fields. -->
<!-- [Interpretation 383] Id Field. Type: Text (joomla) -->
<!-- [Interpretation 383] Default Fields. -->
<!-- [Interpretation 384] Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- [Interpretation 390] Date Created Field. Type: Calendar (joomla) -->
<!-- [Interpretation 391] Date Created Field. Type: Calendar (joomla) -->
<field
name="created"
type="calendar"
@ -22,14 +22,14 @@
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- [Interpretation 401] User Created Field. Type: User (joomla) -->
<!-- [Interpretation 402] User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_SERMONDISTRIBUTOR_PREACHER_CREATED_BY_LABEL"
description="COM_SERMONDISTRIBUTOR_PREACHER_CREATED_BY_DESC"
/>
<!-- [Interpretation 409] Published Field. Type: List (joomla) -->
<!-- [Interpretation 410] Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
filter="intval" size="1" default="1" >
@ -42,18 +42,18 @@
<option value="-2">
JTRASHED</option>
</field>
<!-- [Interpretation 424] Date Modified Field. Type: Calendar (joomla) -->
<!-- [Interpretation 425] Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="JGLOBAL_FIELD_MODIFIED_LABEL" description="COM_CONTENT_FIELD_MODIFIED_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- [Interpretation 428] User Modified Field. Type: User (joomla) -->
<!-- [Interpretation 429] User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- [Interpretation 438] Access Field. Type: Accesslevel (joomla) -->
<!-- [Interpretation 439] Access Field. Type: Accesslevel (joomla) -->
<field name="access"
type="accesslevel"
label="JFIELD_ACCESS_LABEL"
@ -61,7 +61,7 @@
default="1"
required="false"
/>
<!-- [Interpretation 448] Ordering Field. Type: Numbers (joomla) -->
<!-- [Interpretation 449] Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
@ -72,7 +72,7 @@
size="6"
required="false"
/>
<!-- [Interpretation 460] Version Field. Type: Text (joomla) -->
<!-- [Interpretation 461] Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
@ -83,7 +83,7 @@
readonly="true"
filter="unset"
/>
<!-- [Interpretation 474] Metakey Field. Type: Textarea (joomla) -->
<!-- [Interpretation 475] Metakey Field. Type: Textarea (joomla) -->
<field
name="metakey"
type="textarea"
@ -92,7 +92,7 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 483] Metadesc Field. Type: Textarea (joomla) -->
<!-- [Interpretation 484] Metadesc Field. Type: Textarea (joomla) -->
<field
name="metadesc"
type="textarea"
@ -101,8 +101,8 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 493] Dynamic Fields. -->
<!-- [Interpretation 762] Name Field. Type: Text. (joomla) -->
<!-- [Interpretation 494] Dynamic Fields. -->
<!-- [Interpretation 763] Name Field. Type: Text. (joomla) -->
<field
type="text"
name="name"
@ -118,7 +118,7 @@
message="Error! Please add name here."
hint="COM_SERMONDISTRIBUTOR_PREACHER_NAME_HINT"
/>
<!-- [Interpretation 762] Description Field. Type: Editor. (joomla) -->
<!-- [Interpretation 763] Description Field. Type: Editor. (joomla) -->
<field
type="editor"
name="description"
@ -130,7 +130,7 @@
buttons="false"
filter="safehtml"
/>
<!-- [Interpretation 762] Alias Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Alias Field. Type: Text. (joomla) -->
<field
type="text"
name="alias"
@ -139,7 +139,7 @@
filter="STRING"
hint="COM_SERMONDISTRIBUTOR_PREACHER_ALIAS_HINT"
/>
<!-- [Interpretation 762] Email Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Email Field. Type: Text. (joomla) -->
<field
type="text"
name="email"
@ -154,7 +154,7 @@
message="Error! Please add email address here."
hint="COM_SERMONDISTRIBUTOR_PREACHER_EMAIL_HINT"
/>
<!-- [Interpretation 762] Website Field. Type: Url. (joomla) -->
<!-- [Interpretation 763] Website Field. Type: Url. (joomla) -->
<field
type="url"
name="website"
@ -168,7 +168,7 @@
message="Error! Please add website here."
hint="COM_SERMONDISTRIBUTOR_PREACHER_WEBSITE_HINT"
/>
<!-- [Interpretation 762] Icon Field. Type: Media. (joomla) -->
<!-- [Interpretation 763] Icon Field. Type: Media. (joomla) -->
<field
type="media"
name="icon"
@ -178,11 +178,11 @@
/>
</fieldset>
<!-- [Interpretation 512] Metadata Fields. -->
<!-- [Interpretation 513] Metadata Fields. -->
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<fieldset name="vdmmetadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<!-- [Interpretation 516] Robots Field. Type: List (joomla) -->
<!-- [Interpretation 517] Robots Field. Type: List (joomla) -->
<field name="robots"
type="list"
label="JFIELD_METADATA_ROBOTS_LABEL"
@ -193,13 +193,13 @@
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
</field>
<!-- [Interpretation 527] Author Field. Type: Text (joomla) -->
<!-- [Interpretation 528] Author Field. Type: Text (joomla) -->
<field name="author"
type="text"
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
size="20"
/>
<!-- [Interpretation 533] Rights Field. Type: Textarea (joomla) -->
<!-- [Interpretation 534] Rights Field. Type: Textarea (joomla) -->
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
cols="30" rows="2"
@ -207,15 +207,15 @@
</fieldset>
</fields>
<!-- [Interpretation 9242] Access Control Fields. -->
<!-- [Interpretation 9245] Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- [Interpretation 9244] Asset Id Field. Type: Hidden (joomla) -->
<!-- [Interpretation 9247] Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- [Interpretation 9250] Rules Field. Type: Rules (joomla) -->
<!-- [Interpretation 9253] Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.js

View File

@ -4,15 +4,15 @@
addfieldpath="/administrator/components/com_sermondistributor/models/fields"
>
<fieldset name="details">
<!-- [Interpretation 382] Default Fields. -->
<!-- [Interpretation 383] Id Field. Type: Text (joomla) -->
<!-- [Interpretation 383] Default Fields. -->
<!-- [Interpretation 384] Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- [Interpretation 390] Date Created Field. Type: Calendar (joomla) -->
<!-- [Interpretation 391] Date Created Field. Type: Calendar (joomla) -->
<field
name="created"
type="calendar"
@ -22,14 +22,14 @@
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- [Interpretation 401] User Created Field. Type: User (joomla) -->
<!-- [Interpretation 402] User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_SERMONDISTRIBUTOR_SERIES_CREATED_BY_LABEL"
description="COM_SERMONDISTRIBUTOR_SERIES_CREATED_BY_DESC"
/>
<!-- [Interpretation 409] Published Field. Type: List (joomla) -->
<!-- [Interpretation 410] Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
filter="intval" size="1" default="1" >
@ -42,18 +42,18 @@
<option value="-2">
JTRASHED</option>
</field>
<!-- [Interpretation 424] Date Modified Field. Type: Calendar (joomla) -->
<!-- [Interpretation 425] Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="JGLOBAL_FIELD_MODIFIED_LABEL" description="COM_CONTENT_FIELD_MODIFIED_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- [Interpretation 428] User Modified Field. Type: User (joomla) -->
<!-- [Interpretation 429] User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- [Interpretation 438] Access Field. Type: Accesslevel (joomla) -->
<!-- [Interpretation 439] Access Field. Type: Accesslevel (joomla) -->
<field name="access"
type="accesslevel"
label="JFIELD_ACCESS_LABEL"
@ -61,7 +61,7 @@
default="1"
required="false"
/>
<!-- [Interpretation 448] Ordering Field. Type: Numbers (joomla) -->
<!-- [Interpretation 449] Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
@ -72,7 +72,7 @@
size="6"
required="false"
/>
<!-- [Interpretation 460] Version Field. Type: Text (joomla) -->
<!-- [Interpretation 461] Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
@ -83,7 +83,7 @@
readonly="true"
filter="unset"
/>
<!-- [Interpretation 474] Metakey Field. Type: Textarea (joomla) -->
<!-- [Interpretation 475] Metakey Field. Type: Textarea (joomla) -->
<field
name="metakey"
type="textarea"
@ -92,7 +92,7 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 483] Metadesc Field. Type: Textarea (joomla) -->
<!-- [Interpretation 484] Metadesc Field. Type: Textarea (joomla) -->
<field
name="metadesc"
type="textarea"
@ -101,8 +101,8 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 493] Dynamic Fields. -->
<!-- [Interpretation 762] Name Field. Type: Text. (joomla) -->
<!-- [Interpretation 494] Dynamic Fields. -->
<!-- [Interpretation 763] Name Field. Type: Text. (joomla) -->
<field
type="text"
name="name"
@ -118,7 +118,7 @@
message="Error! Please add name here."
hint="COM_SERMONDISTRIBUTOR_SERIES_NAME_HINT"
/>
<!-- [Interpretation 762] Description Field. Type: Editor. (joomla) -->
<!-- [Interpretation 763] Description Field. Type: Editor. (joomla) -->
<field
type="editor"
name="description"
@ -130,7 +130,7 @@
buttons="false"
filter="safehtml"
/>
<!-- [Interpretation 762] Alias Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Alias Field. Type: Text. (joomla) -->
<field
type="text"
name="alias"
@ -139,7 +139,7 @@
filter="STRING"
hint="COM_SERMONDISTRIBUTOR_SERIES_ALIAS_HINT"
/>
<!-- [Interpretation 762] Icon Field. Type: Media. (joomla) -->
<!-- [Interpretation 763] Icon Field. Type: Media. (joomla) -->
<field
type="media"
name="icon"
@ -147,7 +147,7 @@
description="COM_SERMONDISTRIBUTOR_SERIES_ICON_DESCRIPTION"
directory=""
/>
<!-- [Interpretation 762] Scripture Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Scripture Field. Type: Text. (joomla) -->
<field
type="text"
name="scripture"
@ -165,11 +165,11 @@
/>
</fieldset>
<!-- [Interpretation 512] Metadata Fields. -->
<!-- [Interpretation 513] Metadata Fields. -->
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<fieldset name="vdmmetadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<!-- [Interpretation 516] Robots Field. Type: List (joomla) -->
<!-- [Interpretation 517] Robots Field. Type: List (joomla) -->
<field name="robots"
type="list"
label="JFIELD_METADATA_ROBOTS_LABEL"
@ -180,13 +180,13 @@
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
</field>
<!-- [Interpretation 527] Author Field. Type: Text (joomla) -->
<!-- [Interpretation 528] Author Field. Type: Text (joomla) -->
<field name="author"
type="text"
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
size="20"
/>
<!-- [Interpretation 533] Rights Field. Type: Textarea (joomla) -->
<!-- [Interpretation 534] Rights Field. Type: Textarea (joomla) -->
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
cols="30" rows="2"
@ -194,15 +194,15 @@
</fieldset>
</fields>
<!-- [Interpretation 9242] Access Control Fields. -->
<!-- [Interpretation 9245] Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- [Interpretation 9244] Asset Id Field. Type: Hidden (joomla) -->
<!-- [Interpretation 9247] Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- [Interpretation 9250] Rules Field. Type: Rules (joomla) -->
<!-- [Interpretation 9253] Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermon.js
@ -76,7 +76,7 @@ function vvvvvvv(source_vvvvvvv)
var source = source_vvvvvvv.some(source_vvvvvvv_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (source)
{
jQuery('#jform_build').closest('.control-group').show();
@ -107,7 +107,7 @@ function vvvvvvv(source_vvvvvvv)
// the vvvvvvv Some function
function source_vvvvvvv_SomeFunc(source_vvvvvvv)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvvv == 2)
{
return true;
@ -143,7 +143,7 @@ function vvvvvvw(source_vvvvvvw,build_vvvvvvw)
var build = build_vvvvvvw.some(build_vvvvvvw_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (source && build)
{
jQuery('.note_auto_dropbox').closest('.control-group').show();
@ -157,7 +157,7 @@ function vvvvvvw(source_vvvvvvw,build_vvvvvvw)
// the vvvvvvw Some function
function source_vvvvvvw_SomeFunc(source_vvvvvvw)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvvw == 2)
{
return true;
@ -168,7 +168,7 @@ function source_vvvvvvw_SomeFunc(source_vvvvvvw)
// the vvvvvvw Some function
function build_vvvvvvw_SomeFunc(build_vvvvvvw)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (build_vvvvvvw == 2)
{
return true;
@ -204,7 +204,7 @@ function vvvvvvy(source_vvvvvvy,build_vvvvvvy)
var build = build_vvvvvvy.some(build_vvvvvvy_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (source && build)
{
jQuery('#jform_manual_files').closest('.control-group').show();
@ -237,7 +237,7 @@ function vvvvvvy(source_vvvvvvy,build_vvvvvvy)
// the vvvvvvy Some function
function source_vvvvvvy_SomeFunc(source_vvvvvvy)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvvy == 2)
{
return true;
@ -248,7 +248,7 @@ function source_vvvvvvy_SomeFunc(source_vvvvvvy)
// the vvvvvvy Some function
function build_vvvvvvy_SomeFunc(build_vvvvvvy)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (build_vvvvvvy == 1)
{
return true;
@ -284,7 +284,7 @@ function vvvvvvz(build_vvvvvvz,source_vvvvvvz)
var source = source_vvvvvvz.some(source_vvvvvvz_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (build && source)
{
jQuery('#jform_manual_files').closest('.control-group').show();
@ -317,7 +317,7 @@ function vvvvvvz(build_vvvvvvz,source_vvvvvvz)
// the vvvvvvz Some function
function build_vvvvvvz_SomeFunc(build_vvvvvvz)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (build_vvvvvvz == 1)
{
return true;
@ -328,7 +328,7 @@ function build_vvvvvvz_SomeFunc(build_vvvvvvz)
// the vvvvvvz Some function
function source_vvvvvvz_SomeFunc(source_vvvvvvz)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvvz == 2)
{
return true;
@ -352,7 +352,7 @@ function vvvvvwa(source_vvvvvwa)
var source = source_vvvvvwa.some(source_vvvvvwa_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (source)
{
jQuery('#jform_local_files').closest('.control-group').show();
@ -383,7 +383,7 @@ function vvvvvwa(source_vvvvvwa)
// the vvvvvwa Some function
function source_vvvvvwa_SomeFunc(source_vvvvvwa)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvwa == 1)
{
return true;
@ -407,7 +407,7 @@ function vvvvvwb(source_vvvvvwb)
var source = source_vvvvvwb.some(source_vvvvvwb_SomeFunc);
// [Interpretation 7152] set this function logic
// [Interpretation 7155] set this function logic
if (source)
{
jQuery('#jform_url').closest('.control-group').show();
@ -438,7 +438,7 @@ function vvvvvwb(source_vvvvvwb)
// the vvvvvwb Some function
function source_vvvvvwb_SomeFunc(source_vvvvvwb)
{
// [Interpretation 7139] set the function logic
// [Interpretation 7142] set the function logic
if (source_vvvvvwb == 3)
{
return true;
@ -449,7 +449,7 @@ function source_vvvvvwb_SomeFunc(source_vvvvvwb)
// the vvvvvwc function
function vvvvvwc(link_type_vvvvvwc)
{
// [Interpretation 7174] set the function logic
// [Interpretation 7177] set the function logic
if (link_type_vvvvvwc == 2)
{
jQuery('.note_link_directed').closest('.control-group').show();
@ -463,7 +463,7 @@ function vvvvvwc(link_type_vvvvvwc)
// the vvvvvwd function
function vvvvvwd(link_type_vvvvvwd)
{
// [Interpretation 7174] set the function logic
// [Interpretation 7177] set the function logic
if (link_type_vvvvvwd == 1)
{
jQuery('.note_link_encrypted').closest('.control-group').show();

View File

@ -4,15 +4,15 @@
addfieldpath="/administrator/components/com_sermondistributor/models/fields"
>
<fieldset name="details">
<!-- [Interpretation 382] Default Fields. -->
<!-- [Interpretation 383] Id Field. Type: Text (joomla) -->
<!-- [Interpretation 383] Default Fields. -->
<!-- [Interpretation 384] Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- [Interpretation 390] Date Created Field. Type: Calendar (joomla) -->
<!-- [Interpretation 391] Date Created Field. Type: Calendar (joomla) -->
<field
name="created"
type="calendar"
@ -22,14 +22,14 @@
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- [Interpretation 401] User Created Field. Type: User (joomla) -->
<!-- [Interpretation 402] User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_SERMONDISTRIBUTOR_SERMON_CREATED_BY_LABEL"
description="COM_SERMONDISTRIBUTOR_SERMON_CREATED_BY_DESC"
/>
<!-- [Interpretation 409] Published Field. Type: List (joomla) -->
<!-- [Interpretation 410] Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
filter="intval" size="1" default="1" >
@ -42,18 +42,18 @@
<option value="-2">
JTRASHED</option>
</field>
<!-- [Interpretation 424] Date Modified Field. Type: Calendar (joomla) -->
<!-- [Interpretation 425] Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="JGLOBAL_FIELD_MODIFIED_LABEL" description="COM_CONTENT_FIELD_MODIFIED_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- [Interpretation 428] User Modified Field. Type: User (joomla) -->
<!-- [Interpretation 429] User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- [Interpretation 438] Access Field. Type: Accesslevel (joomla) -->
<!-- [Interpretation 439] Access Field. Type: Accesslevel (joomla) -->
<field name="access"
type="accesslevel"
label="JFIELD_ACCESS_LABEL"
@ -61,7 +61,7 @@
default="1"
required="false"
/>
<!-- [Interpretation 448] Ordering Field. Type: Numbers (joomla) -->
<!-- [Interpretation 449] Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
@ -72,7 +72,7 @@
size="6"
required="false"
/>
<!-- [Interpretation 460] Version Field. Type: Text (joomla) -->
<!-- [Interpretation 461] Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
@ -83,7 +83,7 @@
readonly="true"
filter="unset"
/>
<!-- [Interpretation 474] Metakey Field. Type: Textarea (joomla) -->
<!-- [Interpretation 475] Metakey Field. Type: Textarea (joomla) -->
<field
name="metakey"
type="textarea"
@ -92,7 +92,7 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 483] Metadesc Field. Type: Textarea (joomla) -->
<!-- [Interpretation 484] Metadesc Field. Type: Textarea (joomla) -->
<field
name="metadesc"
type="textarea"
@ -101,8 +101,8 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 493] Dynamic Fields. -->
<!-- [Interpretation 762] Name Field. Type: Text. (joomla) -->
<!-- [Interpretation 494] Dynamic Fields. -->
<!-- [Interpretation 763] Name Field. Type: Text. (joomla) -->
<field
type="text"
name="name"
@ -118,7 +118,7 @@
message="Error! Please add name here."
hint="COM_SERMONDISTRIBUTOR_SERMON_NAME_HINT"
/>
<!-- [Interpretation 883] Preacher Field. Type: Preachers. (custom) -->
<!-- [Interpretation 884] Preacher Field. Type: Preachers. (custom) -->
<field
type="preachers"
name="preacher"
@ -129,7 +129,7 @@
default="0"
button="true"
/>
<!-- [Interpretation 883] Series Field. Type: Series. (custom) -->
<!-- [Interpretation 884] Series Field. Type: Series. (custom) -->
<field
type="series"
name="series"
@ -140,7 +140,7 @@
default="0"
button="true"
/>
<!-- [Interpretation 762] Short_description Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Short_description Field. Type: Text. (joomla) -->
<field
type="text"
name="short_description"
@ -154,7 +154,7 @@
message="Error! Please add some short description here."
hint="COM_SERMONDISTRIBUTOR_SERMON_SHORT_DESCRIPTION_HINT"
/>
<!-- [Interpretation 762] Catid Field. Type: Category. (joomla) -->
<!-- [Interpretation 763] Catid Field. Type: Category. (joomla) -->
<field
type="category"
name="catid"
@ -164,7 +164,7 @@
description="COM_SERMONDISTRIBUTOR_SERMON_CATID_DESCRIPTION"
class="inputbox"
/>
<!-- [Interpretation 677] Link_type Field. Type: Radio. (joomla) -->
<!-- [Interpretation 678] Link_type Field. Type: Radio. (joomla) -->
<field
type="radio"
name="link_type"
@ -173,13 +173,13 @@
class="btn-group btn-group-yesno"
default="1"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="1">
COM_SERMONDISTRIBUTOR_SERMON_ENCRYPTED</option>
<option value="2">
COM_SERMONDISTRIBUTOR_SERMON_DIRECT</option>
</field>
<!-- [Interpretation 677] Source Field. Type: List. (joomla) -->
<!-- [Interpretation 678] Source Field. Type: List. (joomla) -->
<field
type="list"
name="source"
@ -189,7 +189,7 @@
multiple="false"
filter="INT"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="">
COM_SERMONDISTRIBUTOR_SERMON_SELECT_SOURCE</option>
<option value="1">
@ -199,7 +199,7 @@
<option value="3">
COM_SERMONDISTRIBUTOR_SERMON_URL</option>
</field>
<!-- [Interpretation 762] Icon Field. Type: Media. (joomla) -->
<!-- [Interpretation 763] Icon Field. Type: Media. (joomla) -->
<field
type="media"
name="icon"
@ -207,7 +207,7 @@
description="COM_SERMONDISTRIBUTOR_SERMON_ICON_DESCRIPTION"
directory=""
/>
<!-- [Interpretation 762] Tags Field. Type: Tag. (joomla) -->
<!-- [Interpretation 763] Tags Field. Type: Tag. (joomla) -->
<field
type="tag"
name="tags"
@ -218,7 +218,7 @@
published="true"
multiple="true"
/>
<!-- [Interpretation 883] Local_files Field. Type: Localfiles. (custom) -->
<!-- [Interpretation 884] Local_files Field. Type: Localfiles. (custom) -->
<field
type="localfiles"
name="local_files"
@ -230,7 +230,7 @@
required="true"
button="false"
/>
<!-- [Interpretation 762] Description Field. Type: Editor. (joomla) -->
<!-- [Interpretation 763] Description Field. Type: Editor. (joomla) -->
<field
type="editor"
name="description"
@ -242,9 +242,9 @@
buttons="false"
filter="safehtml"
/>
<!-- [Interpretation 776] Note_auto_dropbox Field. Type: Note. A None Database Field. (joomla) -->
<!-- [Interpretation 777] Note_auto_dropbox Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_auto_dropbox" label="COM_SERMONDISTRIBUTOR_SERMON_NOTE_AUTO_DROPBOX_LABEL" description="COM_SERMONDISTRIBUTOR_SERMON_NOTE_AUTO_DROPBOX_DESCRIPTION" heading="h4" class="alert alert-info note_auto_dropbox" />
<!-- [Interpretation 762] Alias Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Alias Field. Type: Text. (joomla) -->
<field
type="text"
name="alias"
@ -253,19 +253,19 @@
filter="STRING"
hint="COM_SERMONDISTRIBUTOR_SERMON_ALIAS_HINT"
/>
<!-- [Interpretation 762] Not_required Field. Type: Hidden. (joomla) -->
<!-- [Interpretation 763] Not_required Field. Type: Hidden. (joomla) -->
<field
type="hidden"
name="not_required"
default="[]"
/>
<!-- [Interpretation 776] Note_link_directed Field. Type: Note. A None Database Field. (joomla) -->
<!-- [Interpretation 777] Note_link_directed Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_link_directed" label="COM_SERMONDISTRIBUTOR_SERMON_NOTE_LINK_DIRECTED_LABEL" description="COM_SERMONDISTRIBUTOR_SERMON_NOTE_LINK_DIRECTED_DESCRIPTION" heading="h4" class="alert alert-info note_link_directed" close="true" />
<!-- [Interpretation 776] Note_manual_dropbox Field. Type: Note. A None Database Field. (joomla) -->
<!-- [Interpretation 777] Note_manual_dropbox Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_manual_dropbox" label="COM_SERMONDISTRIBUTOR_SERMON_NOTE_MANUAL_DROPBOX_LABEL" description="COM_SERMONDISTRIBUTOR_SERMON_NOTE_MANUAL_DROPBOX_DESCRIPTION" heading="h4" class="alert alert-info note_manual_dropbox" />
<!-- [Interpretation 776] Note_link_encrypted Field. Type: Note. A None Database Field. (joomla) -->
<!-- [Interpretation 777] Note_link_encrypted Field. Type: Note. A None Database Field. (joomla) -->
<field type="note" name="note_link_encrypted" label="COM_SERMONDISTRIBUTOR_SERMON_NOTE_LINK_ENCRYPTED_LABEL" description="COM_SERMONDISTRIBUTOR_SERMON_NOTE_LINK_ENCRYPTED_DESCRIPTION" heading="h4" class="alert alert-info note_link_encrypted" close="true" />
<!-- [Interpretation 883] Manual_files Field. Type: Dropboxfiles. (custom) -->
<!-- [Interpretation 884] Manual_files Field. Type: Dropboxfiles. (custom) -->
<field
type="dropboxfiles"
name="manual_files"
@ -277,7 +277,7 @@
required="true"
button="false"
/>
<!-- [Interpretation 762] Scripture Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Scripture Field. Type: Text. (joomla) -->
<field
type="text"
name="scripture"
@ -293,7 +293,7 @@
message="Error! Please add some scripture reference here."
hint="COM_SERMONDISTRIBUTOR_SERMON_SCRIPTURE_HINT"
/>
<!-- [Interpretation 762] Url Field. Type: Url. (joomla) -->
<!-- [Interpretation 763] Url Field. Type: Url. (joomla) -->
<field
type="url"
name="url"
@ -308,7 +308,7 @@
message="Error! Please add sermon url here."
hint="COM_SERMONDISTRIBUTOR_SERMON_URL_HINT"
/>
<!-- [Interpretation 677] Build Field. Type: Radio. (joomla) -->
<!-- [Interpretation 678] Build Field. Type: Radio. (joomla) -->
<field
type="radio"
name="build"
@ -317,13 +317,13 @@
class="btn-group btn-group-yesno"
default="1"
required="true">
<!-- [Interpretation 748] Option Set. -->
<!-- [Interpretation 749] Option Set. -->
<option value="1">
COM_SERMONDISTRIBUTOR_SERMON_MANUAL</option>
<option value="2">
COM_SERMONDISTRIBUTOR_SERMON_AUTOMATIC</option>
</field>
<!-- [Interpretation 762] Auto_sermons Field. Type: Hidden. (joomla) -->
<!-- [Interpretation 763] Auto_sermons Field. Type: Hidden. (joomla) -->
<field
type="hidden"
name="auto_sermons"
@ -331,11 +331,11 @@
/>
</fieldset>
<!-- [Interpretation 512] Metadata Fields. -->
<!-- [Interpretation 513] Metadata Fields. -->
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<fieldset name="vdmmetadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<!-- [Interpretation 516] Robots Field. Type: List (joomla) -->
<!-- [Interpretation 517] Robots Field. Type: List (joomla) -->
<field name="robots"
type="list"
label="JFIELD_METADATA_ROBOTS_LABEL"
@ -346,13 +346,13 @@
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
</field>
<!-- [Interpretation 527] Author Field. Type: Text (joomla) -->
<!-- [Interpretation 528] Author Field. Type: Text (joomla) -->
<field name="author"
type="text"
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
size="20"
/>
<!-- [Interpretation 533] Rights Field. Type: Textarea (joomla) -->
<!-- [Interpretation 534] Rights Field. Type: Textarea (joomla) -->
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
cols="30" rows="2"
@ -360,15 +360,15 @@
</fieldset>
</fields>
<!-- [Interpretation 9242] Access Control Fields. -->
<!-- [Interpretation 9245] Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- [Interpretation 9244] Asset Id Field. Type: Hidden (joomla) -->
<!-- [Interpretation 9247] Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- [Interpretation 9250] Rules Field. Type: Rules (joomla) -->
<!-- [Interpretation 9253] Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"

View File

@ -10,7 +10,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistic.js

View File

@ -4,15 +4,15 @@
addfieldpath="/administrator/components/com_sermondistributor/models/fields"
>
<fieldset name="details">
<!-- [Interpretation 382] Default Fields. -->
<!-- [Interpretation 383] Id Field. Type: Text (joomla) -->
<!-- [Interpretation 383] Default Fields. -->
<!-- [Interpretation 384] Id Field. Type: Text (joomla) -->
<field
name="id"
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
readonly="true"
/>
<!-- [Interpretation 390] Date Created Field. Type: Calendar (joomla) -->
<!-- [Interpretation 391] Date Created Field. Type: Calendar (joomla) -->
<field
name="created"
type="calendar"
@ -22,14 +22,14 @@
format="%Y-%m-%d %H:%M:%S"
filter="user_utc"
/>
<!-- [Interpretation 401] User Created Field. Type: User (joomla) -->
<!-- [Interpretation 402] User Created Field. Type: User (joomla) -->
<field
name="created_by"
type="user"
label="COM_SERMONDISTRIBUTOR_STATISTIC_CREATED_BY_LABEL"
description="COM_SERMONDISTRIBUTOR_STATISTIC_CREATED_BY_DESC"
/>
<!-- [Interpretation 409] Published Field. Type: List (joomla) -->
<!-- [Interpretation 410] Published Field. Type: List (joomla) -->
<field name="published" type="list" label="JSTATUS"
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
filter="intval" size="1" default="1" >
@ -42,18 +42,18 @@
<option value="-2">
JTRASHED</option>
</field>
<!-- [Interpretation 424] Date Modified Field. Type: Calendar (joomla) -->
<!-- [Interpretation 425] Date Modified Field. Type: Calendar (joomla) -->
<field name="modified" type="calendar" class="readonly"
label="JGLOBAL_FIELD_MODIFIED_LABEL" description="COM_CONTENT_FIELD_MODIFIED_DESC"
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
<!-- [Interpretation 428] User Modified Field. Type: User (joomla) -->
<!-- [Interpretation 429] User Modified Field. Type: User (joomla) -->
<field name="modified_by" type="user"
label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
class="readonly"
readonly="true"
filter="unset"
/>
<!-- [Interpretation 438] Access Field. Type: Accesslevel (joomla) -->
<!-- [Interpretation 439] Access Field. Type: Accesslevel (joomla) -->
<field name="access"
type="accesslevel"
label="JFIELD_ACCESS_LABEL"
@ -61,7 +61,7 @@
default="1"
required="false"
/>
<!-- [Interpretation 448] Ordering Field. Type: Numbers (joomla) -->
<!-- [Interpretation 449] Ordering Field. Type: Numbers (joomla) -->
<field
name="ordering"
type="number"
@ -72,7 +72,7 @@
size="6"
required="false"
/>
<!-- [Interpretation 460] Version Field. Type: Text (joomla) -->
<!-- [Interpretation 461] Version Field. Type: Text (joomla) -->
<field
name="version"
type="text"
@ -83,7 +83,7 @@
readonly="true"
filter="unset"
/>
<!-- [Interpretation 474] Metakey Field. Type: Textarea (joomla) -->
<!-- [Interpretation 475] Metakey Field. Type: Textarea (joomla) -->
<field
name="metakey"
type="textarea"
@ -92,7 +92,7 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 483] Metadesc Field. Type: Textarea (joomla) -->
<!-- [Interpretation 484] Metadesc Field. Type: Textarea (joomla) -->
<field
name="metadesc"
type="textarea"
@ -101,8 +101,8 @@
rows="3"
cols="30"
/>
<!-- [Interpretation 493] Dynamic Fields. -->
<!-- [Interpretation 762] Filename Field. Type: Text. (joomla) -->
<!-- [Interpretation 494] Dynamic Fields. -->
<!-- [Interpretation 763] Filename Field. Type: Text. (joomla) -->
<field
type="text"
name="filename"
@ -116,7 +116,7 @@
message="Error! Please add file name here."
hint="COM_SERMONDISTRIBUTOR_STATISTIC_FILENAME_HINT"
/>
<!-- [Interpretation 883] Sermon Field. Type: Sermon. (custom) -->
<!-- [Interpretation 884] Sermon Field. Type: Sermon. (custom) -->
<field
type="sermon"
name="sermon"
@ -127,7 +127,7 @@
required="true"
button="true"
/>
<!-- [Interpretation 883] Preacher Field. Type: Preachers. (custom) -->
<!-- [Interpretation 884] Preacher Field. Type: Preachers. (custom) -->
<field
type="preachers"
name="preacher"
@ -138,7 +138,7 @@
default="0"
button="true"
/>
<!-- [Interpretation 883] Series Field. Type: Series. (custom) -->
<!-- [Interpretation 884] Series Field. Type: Series. (custom) -->
<field
type="series"
name="series"
@ -149,7 +149,7 @@
default="0"
button="true"
/>
<!-- [Interpretation 762] Counter Field. Type: Text. (joomla) -->
<!-- [Interpretation 763] Counter Field. Type: Text. (joomla) -->
<field
type="text"
name="counter"
@ -165,11 +165,11 @@
/>
</fieldset>
<!-- [Interpretation 512] Metadata Fields. -->
<!-- [Interpretation 513] Metadata Fields. -->
<fields name="metadata" label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<fieldset name="vdmmetadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
<!-- [Interpretation 516] Robots Field. Type: List (joomla) -->
<!-- [Interpretation 517] Robots Field. Type: List (joomla) -->
<field name="robots"
type="list"
label="JFIELD_METADATA_ROBOTS_LABEL"
@ -180,13 +180,13 @@
<option value="index, nofollow">JGLOBAL_INDEX_NOFOLLOW</option>
<option value="noindex, nofollow">JGLOBAL_NOINDEX_NOFOLLOW</option>
</field>
<!-- [Interpretation 527] Author Field. Type: Text (joomla) -->
<!-- [Interpretation 528] Author Field. Type: Text (joomla) -->
<field name="author"
type="text"
label="JAUTHOR" description="JFIELD_METADATA_AUTHOR_DESC"
size="20"
/>
<!-- [Interpretation 533] Rights Field. Type: Textarea (joomla) -->
<!-- [Interpretation 534] Rights Field. Type: Textarea (joomla) -->
<field name="rights" type="textarea" label="JFIELD_META_RIGHTS_LABEL"
description="JFIELD_META_RIGHTS_DESC" required="false" filter="string"
cols="30" rows="2"
@ -194,15 +194,15 @@
</fieldset>
</fields>
<!-- [Interpretation 9242] Access Control Fields. -->
<!-- [Interpretation 9245] Access Control Fields. -->
<fieldset name="accesscontrol">
<!-- [Interpretation 9244] Asset Id Field. Type: Hidden (joomla) -->
<!-- [Interpretation 9247] Asset Id Field. Type: Hidden (joomla) -->
<field
name="asset_id"
type="hidden"
filter="unset"
/>
<!-- [Interpretation 9250] Rules Field. Type: Rules (joomla) -->
<!-- [Interpretation 9253] Rules Field. Type: Rules (joomla) -->
<field
name="rules"
type="rules"

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_document.php
@ -122,7 +122,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
* @since 1.6
*/
public function getForm($data = array(), $loadData = true)
{ // [Interpretation 8732] Get the form.
{ // [Interpretation 8735] Get the form.
$form = $this->loadForm('com_sermondistributor.help_document', 'help_document', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
@ -132,12 +132,12 @@ class SermondistributorModelHelp_document extends JModelAdmin
$jinput = JFactory::getApplication()->input;
// [Interpretation 8817] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
// [Interpretation 8820] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
if ($jinput->get('a_id'))
{
$id = $jinput->get('a_id', 0, 'INT');
}
// [Interpretation 8822] The back end uses id so we use that the rest of the time and set it to 0 by default.
// [Interpretation 8825] The back end uses id so we use that the rest of the time and set it to 0 by default.
else
{
$id = $jinput->get('id', 0, 'INT');
@ -145,52 +145,52 @@ class SermondistributorModelHelp_document extends JModelAdmin
$user = JFactory::getUser();
// [Interpretation 8828] Check for existing item.
// [Interpretation 8829] Modify the form based on Edit State access controls.
// [Interpretation 8831] Check for existing item.
// [Interpretation 8832] Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('help_document.edit.state', 'com_sermondistributor.help_document.' . (int) $id))
|| ($id == 0 && !$user->authorise('help_document.edit.state', 'com_sermondistributor')))
{
// [Interpretation 8842] Disable fields for display.
// [Interpretation 8845] Disable fields for display.
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('published', 'disabled', 'true');
// [Interpretation 8845] Disable fields while saving.
// [Interpretation 8848] Disable fields while saving.
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('published', 'filter', 'unset');
}
// [Interpretation 8850] If this is a new item insure the greated by is set.
// [Interpretation 8853] If this is a new item insure the greated by is set.
if (0 == $id)
{
// [Interpretation 8853] Set the created_by to this user
// [Interpretation 8856] Set the created_by to this user
$form->setValue('created_by', null, $user->id);
}
// [Interpretation 8856] Modify the form based on Edit Creaded By access controls.
// [Interpretation 8859] Modify the form based on Edit Creaded By access controls.
if (!$user->authorise('core.edit.created_by', 'com_sermondistributor'))
{
// [Interpretation 8868] Disable fields for display.
// [Interpretation 8871] Disable fields for display.
$form->setFieldAttribute('created_by', 'disabled', 'true');
// [Interpretation 8870] Disable fields for display.
// [Interpretation 8873] Disable fields for display.
$form->setFieldAttribute('created_by', 'readonly', 'true');
// [Interpretation 8872] Disable fields while saving.
// [Interpretation 8875] Disable fields while saving.
$form->setFieldAttribute('created_by', 'filter', 'unset');
}
// [Interpretation 8875] Modify the form based on Edit Creaded Date access controls.
// [Interpretation 8878] Modify the form based on Edit Creaded Date access controls.
if (!$user->authorise('core.edit.created', 'com_sermondistributor'))
{
// [Interpretation 8887] Disable fields for display.
// [Interpretation 8890] Disable fields for display.
$form->setFieldAttribute('created', 'disabled', 'true');
// [Interpretation 8889] Disable fields while saving.
// [Interpretation 8892] Disable fields while saving.
$form->setFieldAttribute('created', 'filter', 'unset');
}
// [Interpretation 8922] Only load these values if no id is found
// [Interpretation 8925] Only load these values if no id is found
if (0 == $id)
{
// [Interpretation 8925] Set redirected field name
// [Interpretation 8928] Set redirected field name
$redirectedField = $jinput->get('ref', null, 'STRING');
// [Interpretation 8927] Set redirected field value
// [Interpretation 8930] Set redirected field value
$redirectedValue = $jinput->get('refid', 0, 'INT');
if (0 != $redirectedValue && $redirectedField)
{
// [Interpretation 8931] Now set the local-redirected field default value
// [Interpretation 8934] Now set the local-redirected field default value
$form->setValue($redirectedField, null, $redirectedValue);
}
}
@ -227,7 +227,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
$user = JFactory::getUser();
// [Interpretation 9053] The record has been set. Check the record permissions.
// [Interpretation 9056] The record has been set. Check the record permissions.
return $user->authorise('help_document.delete', 'com_sermondistributor.help_document.' . (int) $record->id);
}
return false;
@ -249,14 +249,14 @@ class SermondistributorModelHelp_document extends JModelAdmin
if ($recordId)
{
// [Interpretation 9140] The record has been set. Check the record permissions.
// [Interpretation 9143] The record has been set. Check the record permissions.
$permission = $user->authorise('help_document.edit.state', 'com_sermondistributor.help_document.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
return false;
}
}
// [Interpretation 9157] In the absense of better information, revert to the component permissions.
// [Interpretation 9160] In the absense of better information, revert to the component permissions.
return $user->authorise('help_document.edit.state', 'com_sermondistributor');
}
@ -271,7 +271,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8965] Check specific edit permission then general edit permission.
// [Interpretation 8968] Check specific edit permission then general edit permission.
$user = JFactory::getUser();
return $user->authorise('help_document.edit', 'com_sermondistributor.help_document.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('help_document.edit', 'com_sermondistributor');
@ -370,20 +370,20 @@ class SermondistributorModelHelp_document extends JModelAdmin
*/
public function validate($form, $data, $group = null)
{
// [Interpretation 7936] check if the not_required field is set
// [Interpretation 7939] check if the not_required field is set
if (SermondistributorHelper::checkString($data['not_required']))
{
$requiredFields = (array) explode(',',(string) $data['not_required']);
$requiredFields = array_unique($requiredFields);
// [Interpretation 7941] now change the required field attributes value
// [Interpretation 7944] now change the required field attributes value
foreach ($requiredFields as $requiredField)
{
// [Interpretation 7944] make sure there is a string value
// [Interpretation 7947] make sure there is a string value
if (SermondistributorHelper::checkString($requiredField))
{
// [Interpretation 7947] change to false
// [Interpretation 7950] change to false
$form->setFieldAttribute($requiredField, 'required', 'false');
// [Interpretation 7949] also clear the data set
// [Interpretation 7952] also clear the data set
$data[$requiredField] = '';
}
}
@ -533,7 +533,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 4148] Set some needed variables.
// [Interpretation 4151] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -547,12 +547,12 @@ class SermondistributorModelHelp_document extends JModelAdmin
return false;
}
// [Interpretation 4168] get list of uniqe fields
// [Interpretation 4171] get list of uniqe fields
$uniqeFields = $this->getUniqeFields();
// [Interpretation 4170] remove move_copy from array
// [Interpretation 4173] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4173] make sure published is set
// [Interpretation 4176] make sure published is set
if (!isset($values['published']))
{
$values['published'] = 0;
@ -564,21 +564,21 @@ class SermondistributorModelHelp_document extends JModelAdmin
$newIds = array();
// [Interpretation 4210] Parent exists so let's proceed
// [Interpretation 4213] Parent exists so let's proceed
while (!empty($pks))
{
// [Interpretation 4213] Pop the first ID off the stack
// [Interpretation 4216] Pop the first ID off the stack
$pk = array_shift($pks);
$this->table->reset();
// [Interpretation 4218] only allow copy if user may edit this item.
// [Interpretation 4221] only allow copy if user may edit this item.
if (!$this->user->authorise('help_document.edit', $contexts[$pk]))
{
// [Interpretation 4228] Not fatal error
// [Interpretation 4231] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
@ -586,19 +586,19 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
// [Interpretation 4233] Check that the row actually exists
// [Interpretation 4236] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4238] Fatal error
// [Interpretation 4241] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4245] Not fatal error
// [Interpretation 4248] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
@ -606,7 +606,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
list($this->table->title, $this->table->alias) = $this->_generateNewTitle($this->table->alias, $this->table->title);
// [Interpretation 4281] insert all set values
// [Interpretation 4284] insert all set values
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
@ -618,7 +618,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
}
// [Interpretation 4293] update all uniqe fields
// [Interpretation 4296] update all uniqe fields
if (SermondistributorHelper::checkArray($uniqeFields))
{
foreach ($uniqeFields as $uniqeField)
@ -627,13 +627,13 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
}
// [Interpretation 4302] Reset the ID because we are making a copy
// [Interpretation 4305] Reset the ID because we are making a copy
$this->table->id = 0;
// [Interpretation 4305] TODO: Deal with ordering?
// [Interpretation 4306] $this->table->ordering = 1;
// [Interpretation 4308] TODO: Deal with ordering?
// [Interpretation 4309] $this->table->ordering = 1;
// [Interpretation 4308] Check the row.
// [Interpretation 4311] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -646,7 +646,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4321] Store the row.
// [Interpretation 4324] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -654,14 +654,14 @@ class SermondistributorModelHelp_document extends JModelAdmin
return false;
}
// [Interpretation 4329] Get the new item ID
// [Interpretation 4332] Get the new item ID
$newId = $this->table->get('id');
// [Interpretation 4332] Add the new ID to the array
// [Interpretation 4335] Add the new ID to the array
$newIds[$pk] = $newId;
}
// [Interpretation 4336] Clean the cache
// [Interpretation 4339] Clean the cache
$this->cleanCache();
return $newIds;
@ -682,7 +682,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 3950] Set some needed variables.
// [Interpretation 3953] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -697,15 +697,15 @@ class SermondistributorModelHelp_document extends JModelAdmin
return false;
}
// [Interpretation 3972] make sure published only updates if user has the permission.
// [Interpretation 3975] make sure published only updates if user has the permission.
if (isset($values['published']) && !$this->canDo->get('help_document.edit.state'))
{
unset($values['published']);
}
// [Interpretation 3985] remove move_copy from array
// [Interpretation 3988] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4006] Parent exists so we proceed
// [Interpretation 4009] Parent exists so we proceed
foreach ($pks as $pk)
{
if (!$this->user->authorise('help_document.edit', $contexts[$pk]))
@ -715,30 +715,30 @@ class SermondistributorModelHelp_document extends JModelAdmin
return false;
}
// [Interpretation 4023] Check that the row actually exists
// [Interpretation 4026] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4028] Fatal error
// [Interpretation 4031] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4035] Not fatal error
// [Interpretation 4038] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
}
// [Interpretation 4041] insert all set values.
// [Interpretation 4044] insert all set values.
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
{
// [Interpretation 4046] Do special action for access.
// [Interpretation 4049] Do special action for access.
if ('access' == $key && strlen($value) > 0)
{
$this->table->$key = $value;
@ -751,7 +751,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
// [Interpretation 4058] Check the row.
// [Interpretation 4061] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -764,7 +764,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4071] Store the row.
// [Interpretation 4074] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -773,7 +773,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
}
// [Interpretation 4080] Clean the cache
// [Interpretation 4083] Clean the cache
$this->cleanCache();
return true;
@ -817,7 +817,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
$data['params'] = (string) $params;
}
// [Interpretation 4362] Alter the title for save as copy
// [Interpretation 4365] Alter the title for save as copy
if ($input->get('task') == 'save2copy')
{
$origTable = clone $this->getTable();
@ -840,7 +840,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
$data['published'] = 0;
}
// [Interpretation 4389] Automatic handling of alias for empty fields
// [Interpretation 4392] Automatic handling of alias for empty fields
if (in_array($input->get('task'), array('apply', 'save', 'save2new')) && (int) $input->get('id') == 0)
{
if ($data['alias'] == null)
@ -871,10 +871,10 @@ class SermondistributorModelHelp_document extends JModelAdmin
}
}
// [Interpretation 4428] Alter the uniqe field for save as copy
// [Interpretation 4431] Alter the uniqe field for save as copy
if ($input->get('task') == 'save2copy')
{
// [Interpretation 4431] Automatic handling of other uniqe fields
// [Interpretation 4434] Automatic handling of other uniqe fields
$uniqeFields = $this->getUniqeFields();
if (SermondistributorHelper::checkArray($uniqeFields))
{
@ -928,7 +928,7 @@ class SermondistributorModelHelp_document extends JModelAdmin
protected function _generateNewTitle($alias, $title)
{
// [Interpretation 4462] Alter the title & alias
// [Interpretation 4465] Alter the title & alias
$table = $this->getTable();
while ($table->load(array('alias' => $alias)))

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_documents.php
@ -113,16 +113,16 @@ class SermondistributorModelHelp_documents extends JModelList
*/
public function getItems()
{
// [Interpretation 9726] check in items
// [Interpretation 9729] check in items
$this->checkInNow();
// load parent items
$items = parent::getItems();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -133,7 +133,7 @@ class SermondistributorModelHelp_documents extends JModelList
continue;
}
// [Interpretation 9872] decode groups
// [Interpretation 9875] decode groups
$groupsArray = json_decode($item->groups, true);
if (SermondistributorHelper::checkArray($groupsArray))
{
@ -156,14 +156,14 @@ class SermondistributorModelHelp_documents extends JModelList
}
}
// [Interpretation 10067] set selection value to a translatable value
// [Interpretation 10070] set selection value to a translatable value
if (SermondistributorHelper::checkArray($items))
{
foreach ($items as $nr => &$item)
{
// [Interpretation 10074] convert type
// [Interpretation 10077] convert type
$item->type = $this->selectionTranslation($item->type, 'type');
// [Interpretation 10074] convert location
// [Interpretation 10077] convert location
$item->location = $this->selectionTranslation($item->location, 'location');
}
}
@ -180,7 +180,7 @@ class SermondistributorModelHelp_documents extends JModelList
*/
public function selectionTranslation($value,$name)
{
// [Interpretation 10100] Array of type language strings
// [Interpretation 10103] Array of type language strings
if ($name == 'type')
{
$typeArray = array(
@ -189,20 +189,20 @@ class SermondistributorModelHelp_documents extends JModelList
2 => 'COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_TEXT',
3 => 'COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_URL'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($typeArray[$value]) && SermondistributorHelper::checkString($typeArray[$value]))
{
return $typeArray[$value];
}
}
// [Interpretation 10100] Array of location language strings
// [Interpretation 10103] Array of location language strings
if ($name == 'location')
{
$locationArray = array(
1 => 'COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_ADMIN',
2 => 'COM_SERMONDISTRIBUTOR_HELP_DOCUMENT_SITE'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($locationArray[$value]) && SermondistributorHelper::checkString($locationArray[$value]))
{
return $locationArray[$value];
@ -218,19 +218,19 @@ class SermondistributorModelHelp_documents extends JModelList
*/
protected function getListQuery()
{
// [Interpretation 6681] Get the user object.
// [Interpretation 6684] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6683] Create a new query object.
// [Interpretation 6686] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6686] Select some fields
// [Interpretation 6689] Select some fields
$query->select('a.*');
// [Interpretation 6693] From the sermondistributor_item table
// [Interpretation 6696] From the sermondistributor_item table
$query->from($db->quoteName('#__sermondistributor_help_document', 'a'));
// [Interpretation 6707] Filter by published state
// [Interpretation 6710] Filter by published state
$published = $this->getState('filter.published');
if (is_numeric($published))
{
@ -241,21 +241,21 @@ class SermondistributorModelHelp_documents extends JModelList
$query->where('(a.published = 0 OR a.published = 1)');
}
// [Interpretation 6719] Join over the asset groups.
// [Interpretation 6722] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6722] Filter by access level.
// [Interpretation 6725] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6727] Implement View Level Access
// [Interpretation 6730] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6804] Filter by search.
// [Interpretation 6807] Filter by search.
$search = $this->getState('filter.search');
if (!empty($search))
{
@ -270,28 +270,28 @@ class SermondistributorModelHelp_documents extends JModelList
}
}
// [Interpretation 6929] Filter by Type.
// [Interpretation 6932] Filter by Type.
if ($type = $this->getState('filter.type'))
{
$query->where('a.type = ' . $db->quote($db->escape($type, true)));
}
// [Interpretation 6929] Filter by Location.
// [Interpretation 6932] Filter by Location.
if ($location = $this->getState('filter.location'))
{
$query->where('a.location = ' . $db->quote($db->escape($location, true)));
}
// [Interpretation 6929] Filter by Admin_view.
// [Interpretation 6932] Filter by Admin_view.
if ($admin_view = $this->getState('filter.admin_view'))
{
$query->where('a.admin_view = ' . $db->quote($db->escape($admin_view, true)));
}
// [Interpretation 6929] Filter by Site_view.
// [Interpretation 6932] Filter by Site_view.
if ($site_view = $this->getState('filter.site_view'))
{
$query->where('a.site_view = ' . $db->quote($db->escape($site_view, true)));
}
// [Interpretation 6763] Add the list ordering clause.
// [Interpretation 6766] Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.id');
$orderDirn = $this->state->get('list.direction', 'asc');
if ($orderCol != '')
@ -309,42 +309,42 @@ class SermondistributorModelHelp_documents extends JModelList
*/
public function getExportData($pks)
{
// [Interpretation 6471] setup the query
// [Interpretation 6474] setup the query
if (SermondistributorHelper::checkArray($pks))
{
// [Interpretation 6474] Get the user object.
// [Interpretation 6477] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6476] Create a new query object.
// [Interpretation 6479] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6479] Select some fields
// [Interpretation 6482] Select some fields
$query->select('a.*');
// [Interpretation 6481] From the sermondistributor_help_document table
// [Interpretation 6484] From the sermondistributor_help_document table
$query->from($db->quoteName('#__sermondistributor_help_document', 'a'));
$query->where('a.id IN (' . implode(',',$pks) . ')');
// [Interpretation 6491] Implement View Level Access
// [Interpretation 6494] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6498] Order the results by ordering
// [Interpretation 6501] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6500] Load the items
// [Interpretation 6503] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -355,13 +355,13 @@ class SermondistributorModelHelp_documents extends JModelList
continue;
}
// [Interpretation 10014] unset the values we don't want exported.
// [Interpretation 10017] unset the values we don't want exported.
unset($item->asset_id);
unset($item->checked_out);
unset($item->checked_out_time);
}
}
// [Interpretation 10023] Add headers to items array.
// [Interpretation 10026] Add headers to items array.
$headers = $this->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
@ -380,13 +380,13 @@ class SermondistributorModelHelp_documents extends JModelList
*/
public function getExImPortHeaders()
{
// [Interpretation 6520] Get a db connection.
// [Interpretation 6523] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 6522] get the columns
// [Interpretation 6525] get the columns
$columns = $db->getTableColumns("#__sermondistributor_help_document");
if (SermondistributorHelper::checkArray($columns))
{
// [Interpretation 6526] remove the headers you don't import/export.
// [Interpretation 6529] remove the headers you don't import/export.
unset($columns['asset_id']);
unset($columns['checked_out']);
unset($columns['checked_out_time']);
@ -408,7 +408,7 @@ class SermondistributorModelHelp_documents extends JModelList
*/
protected function getStoreId($id = '')
{
// [Interpretation 9349] Compile the store id.
// [Interpretation 9352] Compile the store id.
$id .= ':' . $this->getState('filter.id');
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.published');
@ -432,15 +432,15 @@ class SermondistributorModelHelp_documents extends JModelList
*/
protected function checkInNow()
{
// [Interpretation 9742] Get set check in time
// [Interpretation 9745] Get set check in time
$time = JComponentHelper::getParams('com_sermondistributor')->get('check_in');
if ($time)
{
// [Interpretation 9747] Get a db connection.
// [Interpretation 9750] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 9749] reset query
// [Interpretation 9752] reset query
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__sermondistributor_help_document'));
@ -448,24 +448,24 @@ class SermondistributorModelHelp_documents extends JModelList
$db->execute();
if ($db->getNumRows())
{
// [Interpretation 9757] Get Yesterdays date
// [Interpretation 9760] Get Yesterdays date
$date = JFactory::getDate()->modify($time)->toSql();
// [Interpretation 9759] reset query
// [Interpretation 9762] reset query
$query = $db->getQuery(true);
// [Interpretation 9761] Fields to update.
// [Interpretation 9764] Fields to update.
$fields = array(
$db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'',
$db->quoteName('checked_out') . '=0'
);
// [Interpretation 9766] Conditions for which records should be updated.
// [Interpretation 9769] Conditions for which records should be updated.
$conditions = array(
$db->quoteName('checked_out') . '!=0',
$db->quoteName('checked_out_time') . '<\''.$date.'\''
);
// [Interpretation 9771] Check table
// [Interpretation 9774] Check table
$query->update($db->quoteName('#__sermondistributor_help_document'))->set($fields)->where($conditions);
$db->setQuery($query);

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage import.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preacher.php
@ -113,29 +113,29 @@ class SermondistributorModelPreacher extends JModelAdmin
*/
public function getVvvsermons()
{
// [Interpretation 6229] Get the user object.
// [Interpretation 6232] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6231] Create a new query object.
// [Interpretation 6234] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6234] Select some fields
// [Interpretation 6237] Select some fields
$query->select('a.*');
$query->select($db->quoteName('c.title','category_title'));
// [Interpretation 6241] From the sermondistributor_sermon table
// [Interpretation 6244] From the sermondistributor_sermon table
$query->from($db->quoteName('#__sermondistributor_sermon', 'a'));
$query->join('LEFT', $db->quoteName('#__categories', 'c') . ' ON (' . $db->quoteName('a.catid') . ' = ' . $db->quoteName('c.id') . ')');
// [Interpretation 6834] From the sermondistributor_preacher table.
// [Interpretation 6837] From the sermondistributor_preacher table.
$query->select($db->quoteName('g.name','preacher_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_preacher', 'g') . ' ON (' . $db->quoteName('a.preacher') . ' = ' . $db->quoteName('g.id') . ')');
// [Interpretation 6834] From the sermondistributor_series table.
// [Interpretation 6837] From the sermondistributor_series table.
$query->select($db->quoteName('h.name','series_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_series', 'h') . ' ON (' . $db->quoteName('a.series') . ' = ' . $db->quoteName('h.id') . ')');
// [Interpretation 6257] Filter by preachervvvv global.
// [Interpretation 6260] Filter by preachervvvv global.
$preachervvvv = $this->preachervvvv;
if (is_numeric($preachervvvv ))
{
@ -150,35 +150,35 @@ class SermondistributorModelPreacher extends JModelAdmin
$query->where('a.preacher = -5');
}
// [Interpretation 6274] Join over the asset groups.
// [Interpretation 6277] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6277] Filter by access level.
// [Interpretation 6280] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6282] Implement View Level Access
// [Interpretation 6285] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6289] Order the results by ordering
// [Interpretation 6292] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6291] Load the items
// [Interpretation 6294] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -192,14 +192,14 @@ class SermondistributorModelPreacher extends JModelAdmin
}
}
// [Interpretation 10067] set selection value to a translatable value
// [Interpretation 10070] set selection value to a translatable value
if (SermondistributorHelper::checkArray($items))
{
foreach ($items as $nr => &$item)
{
// [Interpretation 10074] convert link_type
// [Interpretation 10077] convert link_type
$item->link_type = $this->selectionTranslationVvvsermons($item->link_type, 'link_type');
// [Interpretation 10074] convert source
// [Interpretation 10077] convert source
$item->source = $this->selectionTranslationVvvsermons($item->source, 'source');
}
}
@ -216,20 +216,20 @@ class SermondistributorModelPreacher extends JModelAdmin
*/
public function selectionTranslationVvvsermons($value,$name)
{
// [Interpretation 10100] Array of link_type language strings
// [Interpretation 10103] Array of link_type language strings
if ($name == 'link_type')
{
$link_typeArray = array(
1 => 'COM_SERMONDISTRIBUTOR_SERMON_ENCRYPTED',
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DIRECT'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($link_typeArray[$value]) && SermondistributorHelper::checkString($link_typeArray[$value]))
{
return $link_typeArray[$value];
}
}
// [Interpretation 10100] Array of source language strings
// [Interpretation 10103] Array of source language strings
if ($name == 'source')
{
$sourceArray = array(
@ -238,7 +238,7 @@ class SermondistributorModelPreacher extends JModelAdmin
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DROPBOX',
3 => 'COM_SERMONDISTRIBUTOR_SERMON_URL'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($sourceArray[$value]) && SermondistributorHelper::checkString($sourceArray[$value]))
{
return $sourceArray[$value];
@ -258,7 +258,7 @@ class SermondistributorModelPreacher extends JModelAdmin
* @since 1.6
*/
public function getForm($data = array(), $loadData = true)
{ // [Interpretation 8732] Get the form.
{ // [Interpretation 8735] Get the form.
$form = $this->loadForm('com_sermondistributor.preacher', 'preacher', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
@ -268,12 +268,12 @@ class SermondistributorModelPreacher extends JModelAdmin
$jinput = JFactory::getApplication()->input;
// [Interpretation 8817] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
// [Interpretation 8820] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
if ($jinput->get('a_id'))
{
$id = $jinput->get('a_id', 0, 'INT');
}
// [Interpretation 8822] The back end uses id so we use that the rest of the time and set it to 0 by default.
// [Interpretation 8825] The back end uses id so we use that the rest of the time and set it to 0 by default.
else
{
$id = $jinput->get('id', 0, 'INT');
@ -281,54 +281,54 @@ class SermondistributorModelPreacher extends JModelAdmin
$user = JFactory::getUser();
// [Interpretation 8828] Check for existing item.
// [Interpretation 8829] Modify the form based on Edit State access controls.
// [Interpretation 8831] Check for existing item.
// [Interpretation 8832] Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('preacher.edit.state', 'com_sermondistributor.preacher.' . (int) $id))
|| ($id == 0 && !$user->authorise('preacher.edit.state', 'com_sermondistributor')))
{
// [Interpretation 8842] Disable fields for display.
// [Interpretation 8845] Disable fields for display.
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('published', 'disabled', 'true');
// [Interpretation 8845] Disable fields while saving.
// [Interpretation 8848] Disable fields while saving.
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('published', 'filter', 'unset');
}
// [Interpretation 8850] If this is a new item insure the greated by is set.
// [Interpretation 8853] If this is a new item insure the greated by is set.
if (0 == $id)
{
// [Interpretation 8853] Set the created_by to this user
// [Interpretation 8856] Set the created_by to this user
$form->setValue('created_by', null, $user->id);
}
// [Interpretation 8856] Modify the form based on Edit Creaded By access controls.
// [Interpretation 8859] Modify the form based on Edit Creaded By access controls.
if ($id != 0 && (!$user->authorise('preacher.edit.created_by', 'com_sermondistributor.preacher.' . (int) $id))
|| ($id == 0 && !$user->authorise('preacher.edit.created_by', 'com_sermondistributor')))
{
// [Interpretation 8868] Disable fields for display.
// [Interpretation 8871] Disable fields for display.
$form->setFieldAttribute('created_by', 'disabled', 'true');
// [Interpretation 8870] Disable fields for display.
// [Interpretation 8873] Disable fields for display.
$form->setFieldAttribute('created_by', 'readonly', 'true');
// [Interpretation 8872] Disable fields while saving.
// [Interpretation 8875] Disable fields while saving.
$form->setFieldAttribute('created_by', 'filter', 'unset');
}
// [Interpretation 8875] Modify the form based on Edit Creaded Date access controls.
// [Interpretation 8878] Modify the form based on Edit Creaded Date access controls.
if ($id != 0 && (!$user->authorise('preacher.edit.created', 'com_sermondistributor.preacher.' . (int) $id))
|| ($id == 0 && !$user->authorise('preacher.edit.created', 'com_sermondistributor')))
{
// [Interpretation 8887] Disable fields for display.
// [Interpretation 8890] Disable fields for display.
$form->setFieldAttribute('created', 'disabled', 'true');
// [Interpretation 8889] Disable fields while saving.
// [Interpretation 8892] Disable fields while saving.
$form->setFieldAttribute('created', 'filter', 'unset');
}
// [Interpretation 8922] Only load these values if no id is found
// [Interpretation 8925] Only load these values if no id is found
if (0 == $id)
{
// [Interpretation 8925] Set redirected field name
// [Interpretation 8928] Set redirected field name
$redirectedField = $jinput->get('ref', null, 'STRING');
// [Interpretation 8927] Set redirected field value
// [Interpretation 8930] Set redirected field value
$redirectedValue = $jinput->get('refid', 0, 'INT');
if (0 != $redirectedValue && $redirectedField)
{
// [Interpretation 8931] Now set the local-redirected field default value
// [Interpretation 8934] Now set the local-redirected field default value
$form->setValue($redirectedField, null, $redirectedValue);
}
}
@ -365,7 +365,7 @@ class SermondistributorModelPreacher extends JModelAdmin
}
$user = JFactory::getUser();
// [Interpretation 9053] The record has been set. Check the record permissions.
// [Interpretation 9056] The record has been set. Check the record permissions.
return $user->authorise('preacher.delete', 'com_sermondistributor.preacher.' . (int) $record->id);
}
return false;
@ -387,14 +387,14 @@ class SermondistributorModelPreacher extends JModelAdmin
if ($recordId)
{
// [Interpretation 9140] The record has been set. Check the record permissions.
// [Interpretation 9143] The record has been set. Check the record permissions.
$permission = $user->authorise('preacher.edit.state', 'com_sermondistributor.preacher.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
return false;
}
}
// [Interpretation 9157] In the absense of better information, revert to the component permissions.
// [Interpretation 9160] In the absense of better information, revert to the component permissions.
return $user->authorise('preacher.edit.state', 'com_sermondistributor');
}
@ -409,7 +409,7 @@ class SermondistributorModelPreacher extends JModelAdmin
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8965] Check specific edit permission then general edit permission.
// [Interpretation 8968] Check specific edit permission then general edit permission.
$user = JFactory::getUser();
return $user->authorise('preacher.edit', 'com_sermondistributor.preacher.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('preacher.edit', 'com_sermondistributor');
@ -635,7 +635,7 @@ class SermondistributorModelPreacher extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 4148] Set some needed variables.
// [Interpretation 4151] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -649,12 +649,12 @@ class SermondistributorModelPreacher extends JModelAdmin
return false;
}
// [Interpretation 4168] get list of uniqe fields
// [Interpretation 4171] get list of uniqe fields
$uniqeFields = $this->getUniqeFields();
// [Interpretation 4170] remove move_copy from array
// [Interpretation 4173] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4173] make sure published is set
// [Interpretation 4176] make sure published is set
if (!isset($values['published']))
{
$values['published'] = 0;
@ -666,21 +666,21 @@ class SermondistributorModelPreacher extends JModelAdmin
$newIds = array();
// [Interpretation 4210] Parent exists so let's proceed
// [Interpretation 4213] Parent exists so let's proceed
while (!empty($pks))
{
// [Interpretation 4213] Pop the first ID off the stack
// [Interpretation 4216] Pop the first ID off the stack
$pk = array_shift($pks);
$this->table->reset();
// [Interpretation 4218] only allow copy if user may edit this item.
// [Interpretation 4221] only allow copy if user may edit this item.
if (!$this->user->authorise('preacher.edit', $contexts[$pk]))
{
// [Interpretation 4228] Not fatal error
// [Interpretation 4231] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
@ -688,19 +688,19 @@ class SermondistributorModelPreacher extends JModelAdmin
}
// [Interpretation 4233] Check that the row actually exists
// [Interpretation 4236] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4238] Fatal error
// [Interpretation 4241] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4245] Not fatal error
// [Interpretation 4248] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
@ -708,7 +708,7 @@ class SermondistributorModelPreacher extends JModelAdmin
list($this->table->name, $this->table->alias) = $this->_generateNewTitle($this->table->alias, $this->table->name);
// [Interpretation 4281] insert all set values
// [Interpretation 4284] insert all set values
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
@ -720,7 +720,7 @@ class SermondistributorModelPreacher extends JModelAdmin
}
}
// [Interpretation 4293] update all uniqe fields
// [Interpretation 4296] update all uniqe fields
if (SermondistributorHelper::checkArray($uniqeFields))
{
foreach ($uniqeFields as $uniqeField)
@ -729,13 +729,13 @@ class SermondistributorModelPreacher extends JModelAdmin
}
}
// [Interpretation 4302] Reset the ID because we are making a copy
// [Interpretation 4305] Reset the ID because we are making a copy
$this->table->id = 0;
// [Interpretation 4305] TODO: Deal with ordering?
// [Interpretation 4306] $this->table->ordering = 1;
// [Interpretation 4308] TODO: Deal with ordering?
// [Interpretation 4309] $this->table->ordering = 1;
// [Interpretation 4308] Check the row.
// [Interpretation 4311] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -748,7 +748,7 @@ class SermondistributorModelPreacher extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4321] Store the row.
// [Interpretation 4324] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -756,14 +756,14 @@ class SermondistributorModelPreacher extends JModelAdmin
return false;
}
// [Interpretation 4329] Get the new item ID
// [Interpretation 4332] Get the new item ID
$newId = $this->table->get('id');
// [Interpretation 4332] Add the new ID to the array
// [Interpretation 4335] Add the new ID to the array
$newIds[$pk] = $newId;
}
// [Interpretation 4336] Clean the cache
// [Interpretation 4339] Clean the cache
$this->cleanCache();
return $newIds;
@ -784,7 +784,7 @@ class SermondistributorModelPreacher extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 3950] Set some needed variables.
// [Interpretation 3953] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -799,15 +799,15 @@ class SermondistributorModelPreacher extends JModelAdmin
return false;
}
// [Interpretation 3972] make sure published only updates if user has the permission.
// [Interpretation 3975] make sure published only updates if user has the permission.
if (isset($values['published']) && !$this->canDo->get('preacher.edit.state'))
{
unset($values['published']);
}
// [Interpretation 3985] remove move_copy from array
// [Interpretation 3988] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4006] Parent exists so we proceed
// [Interpretation 4009] Parent exists so we proceed
foreach ($pks as $pk)
{
if (!$this->user->authorise('preacher.edit', $contexts[$pk]))
@ -817,30 +817,30 @@ class SermondistributorModelPreacher extends JModelAdmin
return false;
}
// [Interpretation 4023] Check that the row actually exists
// [Interpretation 4026] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4028] Fatal error
// [Interpretation 4031] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4035] Not fatal error
// [Interpretation 4038] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
}
// [Interpretation 4041] insert all set values.
// [Interpretation 4044] insert all set values.
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
{
// [Interpretation 4046] Do special action for access.
// [Interpretation 4049] Do special action for access.
if ('access' == $key && strlen($value) > 0)
{
$this->table->$key = $value;
@ -853,7 +853,7 @@ class SermondistributorModelPreacher extends JModelAdmin
}
// [Interpretation 4058] Check the row.
// [Interpretation 4061] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -866,7 +866,7 @@ class SermondistributorModelPreacher extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4071] Store the row.
// [Interpretation 4074] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -875,7 +875,7 @@ class SermondistributorModelPreacher extends JModelAdmin
}
}
// [Interpretation 4080] Clean the cache
// [Interpretation 4083] Clean the cache
$this->cleanCache();
return true;
@ -913,7 +913,7 @@ class SermondistributorModelPreacher extends JModelAdmin
$data['params'] = (string) $params;
}
// [Interpretation 4362] Alter the name for save as copy
// [Interpretation 4365] Alter the name for save as copy
if ($input->get('task') == 'save2copy')
{
$origTable = clone $this->getTable();
@ -936,7 +936,7 @@ class SermondistributorModelPreacher extends JModelAdmin
$data['published'] = 0;
}
// [Interpretation 4389] Automatic handling of alias for empty fields
// [Interpretation 4392] Automatic handling of alias for empty fields
if (in_array($input->get('task'), array('apply', 'save', 'save2new')) && (int) $input->get('id') == 0)
{
if ($data['alias'] == null)
@ -967,10 +967,10 @@ class SermondistributorModelPreacher extends JModelAdmin
}
}
// [Interpretation 4428] Alter the uniqe field for save as copy
// [Interpretation 4431] Alter the uniqe field for save as copy
if ($input->get('task') == 'save2copy')
{
// [Interpretation 4431] Automatic handling of other uniqe fields
// [Interpretation 4434] Automatic handling of other uniqe fields
$uniqeFields = $this->getUniqeFields();
if (SermondistributorHelper::checkArray($uniqeFields))
{
@ -1024,7 +1024,7 @@ class SermondistributorModelPreacher extends JModelAdmin
protected function _generateNewTitle($alias, $title)
{
// [Interpretation 4462] Alter the title & alias
// [Interpretation 4465] Alter the title & alias
$table = $this->getTable();
while ($table->load(array('alias' => $alias)))

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preachers.php
@ -101,16 +101,16 @@ class SermondistributorModelPreachers extends JModelList
*/
public function getItems()
{
// [Interpretation 9726] check in items
// [Interpretation 9729] check in items
$this->checkInNow();
// load parent items
$items = parent::getItems();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -135,19 +135,19 @@ class SermondistributorModelPreachers extends JModelList
*/
protected function getListQuery()
{
// [Interpretation 6681] Get the user object.
// [Interpretation 6684] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6683] Create a new query object.
// [Interpretation 6686] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6686] Select some fields
// [Interpretation 6689] Select some fields
$query->select('a.*');
// [Interpretation 6693] From the sermondistributor_item table
// [Interpretation 6696] From the sermondistributor_item table
$query->from($db->quoteName('#__sermondistributor_preacher', 'a'));
// [Interpretation 6707] Filter by published state
// [Interpretation 6710] Filter by published state
$published = $this->getState('filter.published');
if (is_numeric($published))
{
@ -158,21 +158,21 @@ class SermondistributorModelPreachers extends JModelList
$query->where('(a.published = 0 OR a.published = 1)');
}
// [Interpretation 6719] Join over the asset groups.
// [Interpretation 6722] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6722] Filter by access level.
// [Interpretation 6725] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6727] Implement View Level Access
// [Interpretation 6730] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6804] Filter by search.
// [Interpretation 6807] Filter by search.
$search = $this->getState('filter.search');
if (!empty($search))
{
@ -188,7 +188,7 @@ class SermondistributorModelPreachers extends JModelList
}
// [Interpretation 6763] Add the list ordering clause.
// [Interpretation 6766] Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.id');
$orderDirn = $this->state->get('list.direction', 'asc');
if ($orderCol != '')
@ -206,42 +206,42 @@ class SermondistributorModelPreachers extends JModelList
*/
public function getExportData($pks)
{
// [Interpretation 6471] setup the query
// [Interpretation 6474] setup the query
if (SermondistributorHelper::checkArray($pks))
{
// [Interpretation 6474] Get the user object.
// [Interpretation 6477] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6476] Create a new query object.
// [Interpretation 6479] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6479] Select some fields
// [Interpretation 6482] Select some fields
$query->select('a.*');
// [Interpretation 6481] From the sermondistributor_preacher table
// [Interpretation 6484] From the sermondistributor_preacher table
$query->from($db->quoteName('#__sermondistributor_preacher', 'a'));
$query->where('a.id IN (' . implode(',',$pks) . ')');
// [Interpretation 6491] Implement View Level Access
// [Interpretation 6494] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6498] Order the results by ordering
// [Interpretation 6501] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6500] Load the items
// [Interpretation 6503] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -252,13 +252,13 @@ class SermondistributorModelPreachers extends JModelList
continue;
}
// [Interpretation 10014] unset the values we don't want exported.
// [Interpretation 10017] unset the values we don't want exported.
unset($item->asset_id);
unset($item->checked_out);
unset($item->checked_out_time);
}
}
// [Interpretation 10023] Add headers to items array.
// [Interpretation 10026] Add headers to items array.
$headers = $this->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
@ -277,13 +277,13 @@ class SermondistributorModelPreachers extends JModelList
*/
public function getExImPortHeaders()
{
// [Interpretation 6520] Get a db connection.
// [Interpretation 6523] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 6522] get the columns
// [Interpretation 6525] get the columns
$columns = $db->getTableColumns("#__sermondistributor_preacher");
if (SermondistributorHelper::checkArray($columns))
{
// [Interpretation 6526] remove the headers you don't import/export.
// [Interpretation 6529] remove the headers you don't import/export.
unset($columns['asset_id']);
unset($columns['checked_out']);
unset($columns['checked_out_time']);
@ -305,7 +305,7 @@ class SermondistributorModelPreachers extends JModelList
*/
protected function getStoreId($id = '')
{
// [Interpretation 9349] Compile the store id.
// [Interpretation 9352] Compile the store id.
$id .= ':' . $this->getState('filter.id');
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.published');
@ -326,15 +326,15 @@ class SermondistributorModelPreachers extends JModelList
*/
protected function checkInNow()
{
// [Interpretation 9742] Get set check in time
// [Interpretation 9745] Get set check in time
$time = JComponentHelper::getParams('com_sermondistributor')->get('check_in');
if ($time)
{
// [Interpretation 9747] Get a db connection.
// [Interpretation 9750] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 9749] reset query
// [Interpretation 9752] reset query
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__sermondistributor_preacher'));
@ -342,24 +342,24 @@ class SermondistributorModelPreachers extends JModelList
$db->execute();
if ($db->getNumRows())
{
// [Interpretation 9757] Get Yesterdays date
// [Interpretation 9760] Get Yesterdays date
$date = JFactory::getDate()->modify($time)->toSql();
// [Interpretation 9759] reset query
// [Interpretation 9762] reset query
$query = $db->getQuery(true);
// [Interpretation 9761] Fields to update.
// [Interpretation 9764] Fields to update.
$fields = array(
$db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'',
$db->quoteName('checked_out') . '=0'
);
// [Interpretation 9766] Conditions for which records should be updated.
// [Interpretation 9769] Conditions for which records should be updated.
$conditions = array(
$db->quoteName('checked_out') . '!=0',
$db->quoteName('checked_out_time') . '<\''.$date.'\''
);
// [Interpretation 9771] Check table
// [Interpretation 9774] Check table
$query->update($db->quoteName('#__sermondistributor_preacher'))->set($fields)->where($conditions);
$db->setQuery($query);

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.php
@ -113,29 +113,29 @@ class SermondistributorModelSeries extends JModelAdmin
*/
public function getVwcsermons()
{
// [Interpretation 6229] Get the user object.
// [Interpretation 6232] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6231] Create a new query object.
// [Interpretation 6234] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6234] Select some fields
// [Interpretation 6237] Select some fields
$query->select('a.*');
$query->select($db->quoteName('c.title','category_title'));
// [Interpretation 6241] From the sermondistributor_sermon table
// [Interpretation 6244] From the sermondistributor_sermon table
$query->from($db->quoteName('#__sermondistributor_sermon', 'a'));
$query->join('LEFT', $db->quoteName('#__categories', 'c') . ' ON (' . $db->quoteName('a.catid') . ' = ' . $db->quoteName('c.id') . ')');
// [Interpretation 6834] From the sermondistributor_preacher table.
// [Interpretation 6837] From the sermondistributor_preacher table.
$query->select($db->quoteName('g.name','preacher_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_preacher', 'g') . ' ON (' . $db->quoteName('a.preacher') . ' = ' . $db->quoteName('g.id') . ')');
// [Interpretation 6834] From the sermondistributor_series table.
// [Interpretation 6837] From the sermondistributor_series table.
$query->select($db->quoteName('h.name','series_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_series', 'h') . ' ON (' . $db->quoteName('a.series') . ' = ' . $db->quoteName('h.id') . ')');
// [Interpretation 6257] Filter by seriesvvvx global.
// [Interpretation 6260] Filter by seriesvvvx global.
$seriesvvvx = $this->seriesvvvx;
if (is_numeric($seriesvvvx ))
{
@ -150,35 +150,35 @@ class SermondistributorModelSeries extends JModelAdmin
$query->where('a.series = -5');
}
// [Interpretation 6274] Join over the asset groups.
// [Interpretation 6277] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6277] Filter by access level.
// [Interpretation 6280] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6282] Implement View Level Access
// [Interpretation 6285] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6289] Order the results by ordering
// [Interpretation 6292] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6291] Load the items
// [Interpretation 6294] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -192,14 +192,14 @@ class SermondistributorModelSeries extends JModelAdmin
}
}
// [Interpretation 10067] set selection value to a translatable value
// [Interpretation 10070] set selection value to a translatable value
if (SermondistributorHelper::checkArray($items))
{
foreach ($items as $nr => &$item)
{
// [Interpretation 10074] convert link_type
// [Interpretation 10077] convert link_type
$item->link_type = $this->selectionTranslationVwcsermons($item->link_type, 'link_type');
// [Interpretation 10074] convert source
// [Interpretation 10077] convert source
$item->source = $this->selectionTranslationVwcsermons($item->source, 'source');
}
}
@ -216,20 +216,20 @@ class SermondistributorModelSeries extends JModelAdmin
*/
public function selectionTranslationVwcsermons($value,$name)
{
// [Interpretation 10100] Array of link_type language strings
// [Interpretation 10103] Array of link_type language strings
if ($name == 'link_type')
{
$link_typeArray = array(
1 => 'COM_SERMONDISTRIBUTOR_SERMON_ENCRYPTED',
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DIRECT'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($link_typeArray[$value]) && SermondistributorHelper::checkString($link_typeArray[$value]))
{
return $link_typeArray[$value];
}
}
// [Interpretation 10100] Array of source language strings
// [Interpretation 10103] Array of source language strings
if ($name == 'source')
{
$sourceArray = array(
@ -238,7 +238,7 @@ class SermondistributorModelSeries extends JModelAdmin
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DROPBOX',
3 => 'COM_SERMONDISTRIBUTOR_SERMON_URL'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($sourceArray[$value]) && SermondistributorHelper::checkString($sourceArray[$value]))
{
return $sourceArray[$value];
@ -258,7 +258,7 @@ class SermondistributorModelSeries extends JModelAdmin
* @since 1.6
*/
public function getForm($data = array(), $loadData = true)
{ // [Interpretation 8732] Get the form.
{ // [Interpretation 8735] Get the form.
$form = $this->loadForm('com_sermondistributor.series', 'series', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
@ -268,12 +268,12 @@ class SermondistributorModelSeries extends JModelAdmin
$jinput = JFactory::getApplication()->input;
// [Interpretation 8817] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
// [Interpretation 8820] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
if ($jinput->get('a_id'))
{
$id = $jinput->get('a_id', 0, 'INT');
}
// [Interpretation 8822] The back end uses id so we use that the rest of the time and set it to 0 by default.
// [Interpretation 8825] The back end uses id so we use that the rest of the time and set it to 0 by default.
else
{
$id = $jinput->get('id', 0, 'INT');
@ -281,54 +281,54 @@ class SermondistributorModelSeries extends JModelAdmin
$user = JFactory::getUser();
// [Interpretation 8828] Check for existing item.
// [Interpretation 8829] Modify the form based on Edit State access controls.
// [Interpretation 8831] Check for existing item.
// [Interpretation 8832] Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('series.edit.state', 'com_sermondistributor.series.' . (int) $id))
|| ($id == 0 && !$user->authorise('series.edit.state', 'com_sermondistributor')))
{
// [Interpretation 8842] Disable fields for display.
// [Interpretation 8845] Disable fields for display.
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('published', 'disabled', 'true');
// [Interpretation 8845] Disable fields while saving.
// [Interpretation 8848] Disable fields while saving.
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('published', 'filter', 'unset');
}
// [Interpretation 8850] If this is a new item insure the greated by is set.
// [Interpretation 8853] If this is a new item insure the greated by is set.
if (0 == $id)
{
// [Interpretation 8853] Set the created_by to this user
// [Interpretation 8856] Set the created_by to this user
$form->setValue('created_by', null, $user->id);
}
// [Interpretation 8856] Modify the form based on Edit Creaded By access controls.
// [Interpretation 8859] Modify the form based on Edit Creaded By access controls.
if ($id != 0 && (!$user->authorise('series.edit.created_by', 'com_sermondistributor.series.' . (int) $id))
|| ($id == 0 && !$user->authorise('series.edit.created_by', 'com_sermondistributor')))
{
// [Interpretation 8868] Disable fields for display.
// [Interpretation 8871] Disable fields for display.
$form->setFieldAttribute('created_by', 'disabled', 'true');
// [Interpretation 8870] Disable fields for display.
// [Interpretation 8873] Disable fields for display.
$form->setFieldAttribute('created_by', 'readonly', 'true');
// [Interpretation 8872] Disable fields while saving.
// [Interpretation 8875] Disable fields while saving.
$form->setFieldAttribute('created_by', 'filter', 'unset');
}
// [Interpretation 8875] Modify the form based on Edit Creaded Date access controls.
// [Interpretation 8878] Modify the form based on Edit Creaded Date access controls.
if ($id != 0 && (!$user->authorise('series.edit.created', 'com_sermondistributor.series.' . (int) $id))
|| ($id == 0 && !$user->authorise('series.edit.created', 'com_sermondistributor')))
{
// [Interpretation 8887] Disable fields for display.
// [Interpretation 8890] Disable fields for display.
$form->setFieldAttribute('created', 'disabled', 'true');
// [Interpretation 8889] Disable fields while saving.
// [Interpretation 8892] Disable fields while saving.
$form->setFieldAttribute('created', 'filter', 'unset');
}
// [Interpretation 8922] Only load these values if no id is found
// [Interpretation 8925] Only load these values if no id is found
if (0 == $id)
{
// [Interpretation 8925] Set redirected field name
// [Interpretation 8928] Set redirected field name
$redirectedField = $jinput->get('ref', null, 'STRING');
// [Interpretation 8927] Set redirected field value
// [Interpretation 8930] Set redirected field value
$redirectedValue = $jinput->get('refid', 0, 'INT');
if (0 != $redirectedValue && $redirectedField)
{
// [Interpretation 8931] Now set the local-redirected field default value
// [Interpretation 8934] Now set the local-redirected field default value
$form->setValue($redirectedField, null, $redirectedValue);
}
}
@ -365,7 +365,7 @@ class SermondistributorModelSeries extends JModelAdmin
}
$user = JFactory::getUser();
// [Interpretation 9053] The record has been set. Check the record permissions.
// [Interpretation 9056] The record has been set. Check the record permissions.
return $user->authorise('series.delete', 'com_sermondistributor.series.' . (int) $record->id);
}
return false;
@ -387,14 +387,14 @@ class SermondistributorModelSeries extends JModelAdmin
if ($recordId)
{
// [Interpretation 9140] The record has been set. Check the record permissions.
// [Interpretation 9143] The record has been set. Check the record permissions.
$permission = $user->authorise('series.edit.state', 'com_sermondistributor.series.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
return false;
}
}
// [Interpretation 9157] In the absense of better information, revert to the component permissions.
// [Interpretation 9160] In the absense of better information, revert to the component permissions.
return $user->authorise('series.edit.state', 'com_sermondistributor');
}
@ -409,7 +409,7 @@ class SermondistributorModelSeries extends JModelAdmin
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8965] Check specific edit permission then general edit permission.
// [Interpretation 8968] Check specific edit permission then general edit permission.
$user = JFactory::getUser();
return $user->authorise('series.edit', 'com_sermondistributor.series.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('series.edit', 'com_sermondistributor');
@ -635,7 +635,7 @@ class SermondistributorModelSeries extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 4148] Set some needed variables.
// [Interpretation 4151] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -649,12 +649,12 @@ class SermondistributorModelSeries extends JModelAdmin
return false;
}
// [Interpretation 4168] get list of uniqe fields
// [Interpretation 4171] get list of uniqe fields
$uniqeFields = $this->getUniqeFields();
// [Interpretation 4170] remove move_copy from array
// [Interpretation 4173] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4173] make sure published is set
// [Interpretation 4176] make sure published is set
if (!isset($values['published']))
{
$values['published'] = 0;
@ -666,21 +666,21 @@ class SermondistributorModelSeries extends JModelAdmin
$newIds = array();
// [Interpretation 4210] Parent exists so let's proceed
// [Interpretation 4213] Parent exists so let's proceed
while (!empty($pks))
{
// [Interpretation 4213] Pop the first ID off the stack
// [Interpretation 4216] Pop the first ID off the stack
$pk = array_shift($pks);
$this->table->reset();
// [Interpretation 4218] only allow copy if user may edit this item.
// [Interpretation 4221] only allow copy if user may edit this item.
if (!$this->user->authorise('series.edit', $contexts[$pk]))
{
// [Interpretation 4228] Not fatal error
// [Interpretation 4231] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
@ -688,19 +688,19 @@ class SermondistributorModelSeries extends JModelAdmin
}
// [Interpretation 4233] Check that the row actually exists
// [Interpretation 4236] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4238] Fatal error
// [Interpretation 4241] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4245] Not fatal error
// [Interpretation 4248] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
@ -708,7 +708,7 @@ class SermondistributorModelSeries extends JModelAdmin
list($this->table->name, $this->table->alias) = $this->_generateNewTitle($this->table->alias, $this->table->name);
// [Interpretation 4281] insert all set values
// [Interpretation 4284] insert all set values
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
@ -720,7 +720,7 @@ class SermondistributorModelSeries extends JModelAdmin
}
}
// [Interpretation 4293] update all uniqe fields
// [Interpretation 4296] update all uniqe fields
if (SermondistributorHelper::checkArray($uniqeFields))
{
foreach ($uniqeFields as $uniqeField)
@ -729,13 +729,13 @@ class SermondistributorModelSeries extends JModelAdmin
}
}
// [Interpretation 4302] Reset the ID because we are making a copy
// [Interpretation 4305] Reset the ID because we are making a copy
$this->table->id = 0;
// [Interpretation 4305] TODO: Deal with ordering?
// [Interpretation 4306] $this->table->ordering = 1;
// [Interpretation 4308] TODO: Deal with ordering?
// [Interpretation 4309] $this->table->ordering = 1;
// [Interpretation 4308] Check the row.
// [Interpretation 4311] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -748,7 +748,7 @@ class SermondistributorModelSeries extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4321] Store the row.
// [Interpretation 4324] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -756,14 +756,14 @@ class SermondistributorModelSeries extends JModelAdmin
return false;
}
// [Interpretation 4329] Get the new item ID
// [Interpretation 4332] Get the new item ID
$newId = $this->table->get('id');
// [Interpretation 4332] Add the new ID to the array
// [Interpretation 4335] Add the new ID to the array
$newIds[$pk] = $newId;
}
// [Interpretation 4336] Clean the cache
// [Interpretation 4339] Clean the cache
$this->cleanCache();
return $newIds;
@ -784,7 +784,7 @@ class SermondistributorModelSeries extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 3950] Set some needed variables.
// [Interpretation 3953] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -799,15 +799,15 @@ class SermondistributorModelSeries extends JModelAdmin
return false;
}
// [Interpretation 3972] make sure published only updates if user has the permission.
// [Interpretation 3975] make sure published only updates if user has the permission.
if (isset($values['published']) && !$this->canDo->get('series.edit.state'))
{
unset($values['published']);
}
// [Interpretation 3985] remove move_copy from array
// [Interpretation 3988] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4006] Parent exists so we proceed
// [Interpretation 4009] Parent exists so we proceed
foreach ($pks as $pk)
{
if (!$this->user->authorise('series.edit', $contexts[$pk]))
@ -817,30 +817,30 @@ class SermondistributorModelSeries extends JModelAdmin
return false;
}
// [Interpretation 4023] Check that the row actually exists
// [Interpretation 4026] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4028] Fatal error
// [Interpretation 4031] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4035] Not fatal error
// [Interpretation 4038] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
}
// [Interpretation 4041] insert all set values.
// [Interpretation 4044] insert all set values.
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
{
// [Interpretation 4046] Do special action for access.
// [Interpretation 4049] Do special action for access.
if ('access' == $key && strlen($value) > 0)
{
$this->table->$key = $value;
@ -853,7 +853,7 @@ class SermondistributorModelSeries extends JModelAdmin
}
// [Interpretation 4058] Check the row.
// [Interpretation 4061] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -866,7 +866,7 @@ class SermondistributorModelSeries extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4071] Store the row.
// [Interpretation 4074] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -875,7 +875,7 @@ class SermondistributorModelSeries extends JModelAdmin
}
}
// [Interpretation 4080] Clean the cache
// [Interpretation 4083] Clean the cache
$this->cleanCache();
return true;
@ -913,7 +913,7 @@ class SermondistributorModelSeries extends JModelAdmin
$data['params'] = (string) $params;
}
// [Interpretation 4362] Alter the name for save as copy
// [Interpretation 4365] Alter the name for save as copy
if ($input->get('task') == 'save2copy')
{
$origTable = clone $this->getTable();
@ -936,7 +936,7 @@ class SermondistributorModelSeries extends JModelAdmin
$data['published'] = 0;
}
// [Interpretation 4389] Automatic handling of alias for empty fields
// [Interpretation 4392] Automatic handling of alias for empty fields
if (in_array($input->get('task'), array('apply', 'save', 'save2new')) && (int) $input->get('id') == 0)
{
if ($data['alias'] == null)
@ -967,10 +967,10 @@ class SermondistributorModelSeries extends JModelAdmin
}
}
// [Interpretation 4428] Alter the uniqe field for save as copy
// [Interpretation 4431] Alter the uniqe field for save as copy
if ($input->get('task') == 'save2copy')
{
// [Interpretation 4431] Automatic handling of other uniqe fields
// [Interpretation 4434] Automatic handling of other uniqe fields
$uniqeFields = $this->getUniqeFields();
if (SermondistributorHelper::checkArray($uniqeFields))
{
@ -1024,7 +1024,7 @@ class SermondistributorModelSeries extends JModelAdmin
protected function _generateNewTitle($alias, $title)
{
// [Interpretation 4462] Alter the title & alias
// [Interpretation 4465] Alter the title & alias
$table = $this->getTable();
while ($table->load(array('alias' => $alias)))

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series_list.php
@ -97,16 +97,16 @@ class SermondistributorModelSeries_list extends JModelList
*/
public function getItems()
{
// [Interpretation 9726] check in items
// [Interpretation 9729] check in items
$this->checkInNow();
// load parent items
$items = parent::getItems();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -131,19 +131,19 @@ class SermondistributorModelSeries_list extends JModelList
*/
protected function getListQuery()
{
// [Interpretation 6681] Get the user object.
// [Interpretation 6684] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6683] Create a new query object.
// [Interpretation 6686] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6686] Select some fields
// [Interpretation 6689] Select some fields
$query->select('a.*');
// [Interpretation 6693] From the sermondistributor_item table
// [Interpretation 6696] From the sermondistributor_item table
$query->from($db->quoteName('#__sermondistributor_series', 'a'));
// [Interpretation 6707] Filter by published state
// [Interpretation 6710] Filter by published state
$published = $this->getState('filter.published');
if (is_numeric($published))
{
@ -154,21 +154,21 @@ class SermondistributorModelSeries_list extends JModelList
$query->where('(a.published = 0 OR a.published = 1)');
}
// [Interpretation 6719] Join over the asset groups.
// [Interpretation 6722] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6722] Filter by access level.
// [Interpretation 6725] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6727] Implement View Level Access
// [Interpretation 6730] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6804] Filter by search.
// [Interpretation 6807] Filter by search.
$search = $this->getState('filter.search');
if (!empty($search))
{
@ -184,7 +184,7 @@ class SermondistributorModelSeries_list extends JModelList
}
// [Interpretation 6763] Add the list ordering clause.
// [Interpretation 6766] Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.id');
$orderDirn = $this->state->get('list.direction', 'asc');
if ($orderCol != '')
@ -202,42 +202,42 @@ class SermondistributorModelSeries_list extends JModelList
*/
public function getExportData($pks)
{
// [Interpretation 6471] setup the query
// [Interpretation 6474] setup the query
if (SermondistributorHelper::checkArray($pks))
{
// [Interpretation 6474] Get the user object.
// [Interpretation 6477] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6476] Create a new query object.
// [Interpretation 6479] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6479] Select some fields
// [Interpretation 6482] Select some fields
$query->select('a.*');
// [Interpretation 6481] From the sermondistributor_series table
// [Interpretation 6484] From the sermondistributor_series table
$query->from($db->quoteName('#__sermondistributor_series', 'a'));
$query->where('a.id IN (' . implode(',',$pks) . ')');
// [Interpretation 6491] Implement View Level Access
// [Interpretation 6494] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6498] Order the results by ordering
// [Interpretation 6501] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6500] Load the items
// [Interpretation 6503] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -248,13 +248,13 @@ class SermondistributorModelSeries_list extends JModelList
continue;
}
// [Interpretation 10014] unset the values we don't want exported.
// [Interpretation 10017] unset the values we don't want exported.
unset($item->asset_id);
unset($item->checked_out);
unset($item->checked_out_time);
}
}
// [Interpretation 10023] Add headers to items array.
// [Interpretation 10026] Add headers to items array.
$headers = $this->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
@ -273,13 +273,13 @@ class SermondistributorModelSeries_list extends JModelList
*/
public function getExImPortHeaders()
{
// [Interpretation 6520] Get a db connection.
// [Interpretation 6523] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 6522] get the columns
// [Interpretation 6525] get the columns
$columns = $db->getTableColumns("#__sermondistributor_series");
if (SermondistributorHelper::checkArray($columns))
{
// [Interpretation 6526] remove the headers you don't import/export.
// [Interpretation 6529] remove the headers you don't import/export.
unset($columns['asset_id']);
unset($columns['checked_out']);
unset($columns['checked_out_time']);
@ -301,7 +301,7 @@ class SermondistributorModelSeries_list extends JModelList
*/
protected function getStoreId($id = '')
{
// [Interpretation 9349] Compile the store id.
// [Interpretation 9352] Compile the store id.
$id .= ':' . $this->getState('filter.id');
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.published');
@ -321,15 +321,15 @@ class SermondistributorModelSeries_list extends JModelList
*/
protected function checkInNow()
{
// [Interpretation 9742] Get set check in time
// [Interpretation 9745] Get set check in time
$time = JComponentHelper::getParams('com_sermondistributor')->get('check_in');
if ($time)
{
// [Interpretation 9747] Get a db connection.
// [Interpretation 9750] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 9749] reset query
// [Interpretation 9752] reset query
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__sermondistributor_series'));
@ -337,24 +337,24 @@ class SermondistributorModelSeries_list extends JModelList
$db->execute();
if ($db->getNumRows())
{
// [Interpretation 9757] Get Yesterdays date
// [Interpretation 9760] Get Yesterdays date
$date = JFactory::getDate()->modify($time)->toSql();
// [Interpretation 9759] reset query
// [Interpretation 9762] reset query
$query = $db->getQuery(true);
// [Interpretation 9761] Fields to update.
// [Interpretation 9764] Fields to update.
$fields = array(
$db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'',
$db->quoteName('checked_out') . '=0'
);
// [Interpretation 9766] Conditions for which records should be updated.
// [Interpretation 9769] Conditions for which records should be updated.
$conditions = array(
$db->quoteName('checked_out') . '!=0',
$db->quoteName('checked_out_time') . '<\''.$date.'\''
);
// [Interpretation 9771] Check table
// [Interpretation 9774] Check table
$query->update($db->quoteName('#__sermondistributor_series'))->set($fields)->where($conditions);
$db->setQuery($query);

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermon.php
@ -125,31 +125,31 @@ class SermondistributorModelSermon extends JModelAdmin
*/
public function getVwbstastics()
{
// [Interpretation 6229] Get the user object.
// [Interpretation 6232] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6231] Create a new query object.
// [Interpretation 6234] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6234] Select some fields
// [Interpretation 6237] Select some fields
$query->select('a.*');
// [Interpretation 6241] From the sermondistributor_statistic table
// [Interpretation 6244] From the sermondistributor_statistic table
$query->from($db->quoteName('#__sermondistributor_statistic', 'a'));
// [Interpretation 6834] From the sermondistributor_sermon table.
// [Interpretation 6837] From the sermondistributor_sermon table.
$query->select($db->quoteName('g.name','sermon_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_sermon', 'g') . ' ON (' . $db->quoteName('a.sermon') . ' = ' . $db->quoteName('g.id') . ')');
// [Interpretation 6834] From the sermondistributor_preacher table.
// [Interpretation 6837] From the sermondistributor_preacher table.
$query->select($db->quoteName('h.name','preacher_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_preacher', 'h') . ' ON (' . $db->quoteName('a.preacher') . ' = ' . $db->quoteName('h.id') . ')');
// [Interpretation 6834] From the sermondistributor_series table.
// [Interpretation 6837] From the sermondistributor_series table.
$query->select($db->quoteName('i.name','series_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_series', 'i') . ' ON (' . $db->quoteName('a.series') . ' = ' . $db->quoteName('i.id') . ')');
// [Interpretation 6257] Filter by sermonvvvw global.
// [Interpretation 6260] Filter by sermonvvvw global.
$sermonvvvw = $this->sermonvvvw;
if (is_numeric($sermonvvvw ))
{
@ -164,35 +164,35 @@ class SermondistributorModelSermon extends JModelAdmin
$query->where('a.sermon = -5');
}
// [Interpretation 6274] Join over the asset groups.
// [Interpretation 6277] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6277] Filter by access level.
// [Interpretation 6280] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6282] Implement View Level Access
// [Interpretation 6285] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6289] Order the results by ordering
// [Interpretation 6292] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6291] Load the items
// [Interpretation 6294] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -221,7 +221,7 @@ class SermondistributorModelSermon extends JModelAdmin
* @since 1.6
*/
public function getForm($data = array(), $loadData = true)
{ // [Interpretation 8732] Get the form.
{ // [Interpretation 8735] Get the form.
$form = $this->loadForm('com_sermondistributor.sermon', 'sermon', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
@ -231,17 +231,17 @@ class SermondistributorModelSermon extends JModelAdmin
$jinput = JFactory::getApplication()->input;
// [Interpretation 8759] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
// [Interpretation 8762] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
if ($jinput->get('a_id'))
{
$id = $jinput->get('a_id', 0, 'INT');
}
// [Interpretation 8764] The back end uses id so we use that the rest of the time and set it to 0 by default.
// [Interpretation 8767] The back end uses id so we use that the rest of the time and set it to 0 by default.
else
{
$id = $jinput->get('id', 0, 'INT');
}
// [Interpretation 8769] Determine correct permissions to check.
// [Interpretation 8772] Determine correct permissions to check.
if ($this->getState('sermon.id'))
{
$id = $this->getState('sermon.id');
@ -249,74 +249,74 @@ class SermondistributorModelSermon extends JModelAdmin
$catid = 0;
if (isset($this->getItem($id)->catid))
{
// [Interpretation 8776] set catagory id
// [Interpretation 8779] set catagory id
$catid = $this->getItem($id)->catid;
// [Interpretation 8778] Existing record. Can only edit in selected categories.
// [Interpretation 8781] Existing record. Can only edit in selected categories.
$form->setFieldAttribute('catid', 'action', 'core.edit');
// [Interpretation 8780] Existing record. Can only edit own items in selected categories.
// [Interpretation 8783] Existing record. Can only edit own items in selected categories.
$form->setFieldAttribute('catid', 'action', 'core.edit.own');
}
}
else
{
// [Interpretation 8786] New record. Can only create in selected categories.
// [Interpretation 8789] New record. Can only create in selected categories.
$form->setFieldAttribute('catid', 'action', 'core.create');
}
$user = JFactory::getUser();
// [Interpretation 8790] Check for existing item.
// [Interpretation 8791] Modify the form based on Edit State access controls.
// [Interpretation 8793] Check for existing item.
// [Interpretation 8794] Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('sermon.edit.state', 'com_sermondistributor.sermon.' . (int) $id))
|| (isset($catid) && $catid != 0 && !$user->authorise('core.edit.state', 'com_sermondistributor.sermons.category.' . (int) $catid))
|| ($id == 0 && !$user->authorise('sermon.edit.state', 'com_sermondistributor')))
{
// [Interpretation 8806] Disable fields for display.
// [Interpretation 8809] Disable fields for display.
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('published', 'disabled', 'true');
// [Interpretation 8809] Disable fields while saving.
// [Interpretation 8812] Disable fields while saving.
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('published', 'filter', 'unset');
}
// [Interpretation 8850] If this is a new item insure the greated by is set.
// [Interpretation 8853] If this is a new item insure the greated by is set.
if (0 == $id)
{
// [Interpretation 8853] Set the created_by to this user
// [Interpretation 8856] Set the created_by to this user
$form->setValue('created_by', null, $user->id);
}
// [Interpretation 8856] Modify the form based on Edit Creaded By access controls.
// [Interpretation 8859] Modify the form based on Edit Creaded By access controls.
if ($id != 0 && (!$user->authorise('sermon.edit.created_by', 'com_sermondistributor.sermon.' . (int) $id))
|| ($id == 0 && !$user->authorise('sermon.edit.created_by', 'com_sermondistributor')))
{
// [Interpretation 8868] Disable fields for display.
// [Interpretation 8871] Disable fields for display.
$form->setFieldAttribute('created_by', 'disabled', 'true');
// [Interpretation 8870] Disable fields for display.
// [Interpretation 8873] Disable fields for display.
$form->setFieldAttribute('created_by', 'readonly', 'true');
// [Interpretation 8872] Disable fields while saving.
// [Interpretation 8875] Disable fields while saving.
$form->setFieldAttribute('created_by', 'filter', 'unset');
}
// [Interpretation 8875] Modify the form based on Edit Creaded Date access controls.
// [Interpretation 8878] Modify the form based on Edit Creaded Date access controls.
if ($id != 0 && (!$user->authorise('sermon.edit.created', 'com_sermondistributor.sermon.' . (int) $id))
|| ($id == 0 && !$user->authorise('sermon.edit.created', 'com_sermondistributor')))
{
// [Interpretation 8887] Disable fields for display.
// [Interpretation 8890] Disable fields for display.
$form->setFieldAttribute('created', 'disabled', 'true');
// [Interpretation 8889] Disable fields while saving.
// [Interpretation 8892] Disable fields while saving.
$form->setFieldAttribute('created', 'filter', 'unset');
}
// [Interpretation 8922] Only load these values if no id is found
// [Interpretation 8925] Only load these values if no id is found
if (0 == $id)
{
// [Interpretation 8925] Set redirected field name
// [Interpretation 8928] Set redirected field name
$redirectedField = $jinput->get('ref', null, 'STRING');
// [Interpretation 8927] Set redirected field value
// [Interpretation 8930] Set redirected field value
$redirectedValue = $jinput->get('refid', 0, 'INT');
if (0 != $redirectedValue && $redirectedField)
{
// [Interpretation 8931] Now set the local-redirected field default value
// [Interpretation 8934] Now set the local-redirected field default value
$form->setValue($redirectedField, null, $redirectedValue);
}
}
@ -357,7 +357,7 @@ class SermondistributorModelSermon extends JModelAdmin
if ($allow)
{
// [Interpretation 9024] The record has been set. Check the record permissions.
// [Interpretation 9027] The record has been set. Check the record permissions.
return $user->authorise('sermon.delete', 'com_sermondistributor.sermon.' . (int) $record->id);
}
return $allow;
@ -381,14 +381,14 @@ class SermondistributorModelSermon extends JModelAdmin
if ($recordId)
{
// [Interpretation 9097] The record has been set. Check the record permissions.
// [Interpretation 9100] The record has been set. Check the record permissions.
$permission = $user->authorise('sermon.edit.state', 'com_sermondistributor.sermon.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
return false;
}
}
// [Interpretation 9113] Check against the category.
// [Interpretation 9116] Check against the category.
if (!empty($record->catid))
{
$catpermission = $user->authorise('core.edit.state', 'com_sermondistributor.sermons.category.' . (int) $record->catid);
@ -397,7 +397,7 @@ class SermondistributorModelSermon extends JModelAdmin
return false;
}
}
// [Interpretation 9124] In the absense of better information, revert to the component permissions.
// [Interpretation 9127] In the absense of better information, revert to the component permissions.
return $user->authorise('sermon.edit.state', 'com_sermondistributor');
}
@ -412,7 +412,7 @@ class SermondistributorModelSermon extends JModelAdmin
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8965] Check specific edit permission then general edit permission.
// [Interpretation 8968] Check specific edit permission then general edit permission.
$user = JFactory::getUser();
return $user->authorise('sermon.edit', 'com_sermondistributor.sermon.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('sermon.edit', 'com_sermondistributor');
@ -511,20 +511,20 @@ class SermondistributorModelSermon extends JModelAdmin
*/
public function validate($form, $data, $group = null)
{
// [Interpretation 7936] check if the not_required field is set
// [Interpretation 7939] check if the not_required field is set
if (SermondistributorHelper::checkString($data['not_required']))
{
$requiredFields = (array) explode(',',(string) $data['not_required']);
$requiredFields = array_unique($requiredFields);
// [Interpretation 7941] now change the required field attributes value
// [Interpretation 7944] now change the required field attributes value
foreach ($requiredFields as $requiredField)
{
// [Interpretation 7944] make sure there is a string value
// [Interpretation 7947] make sure there is a string value
if (SermondistributorHelper::checkString($requiredField))
{
// [Interpretation 7947] change to false
// [Interpretation 7950] change to false
$form->setFieldAttribute($requiredField, 'required', 'false');
// [Interpretation 7949] also clear the data set
// [Interpretation 7952] also clear the data set
$data[$requiredField] = '';
}
}
@ -674,7 +674,7 @@ class SermondistributorModelSermon extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 4148] Set some needed variables.
// [Interpretation 4151] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -688,12 +688,12 @@ class SermondistributorModelSermon extends JModelAdmin
return false;
}
// [Interpretation 4168] get list of uniqe fields
// [Interpretation 4171] get list of uniqe fields
$uniqeFields = $this->getUniqeFields();
// [Interpretation 4170] remove move_copy from array
// [Interpretation 4173] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4173] make sure published is set
// [Interpretation 4176] make sure published is set
if (!isset($values['published']))
{
$values['published'] = 0;
@ -709,7 +709,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
elseif (isset($values['category']) && (int) $values['category'] > 0)
{
// [Interpretation 4198] move the category value to correct field name
// [Interpretation 4201] move the category value to correct field name
$values['catid'] = $values['category'];
unset($values['category']);
}
@ -720,21 +720,21 @@ class SermondistributorModelSermon extends JModelAdmin
$newIds = array();
// [Interpretation 4210] Parent exists so let's proceed
// [Interpretation 4213] Parent exists so let's proceed
while (!empty($pks))
{
// [Interpretation 4213] Pop the first ID off the stack
// [Interpretation 4216] Pop the first ID off the stack
$pk = array_shift($pks);
$this->table->reset();
// [Interpretation 4218] only allow copy if user may edit this item.
// [Interpretation 4221] only allow copy if user may edit this item.
if (!$this->user->authorise('sermon.edit', $contexts[$pk]))
{
// [Interpretation 4228] Not fatal error
// [Interpretation 4231] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
@ -742,19 +742,19 @@ class SermondistributorModelSermon extends JModelAdmin
}
// [Interpretation 4233] Check that the row actually exists
// [Interpretation 4236] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4238] Fatal error
// [Interpretation 4241] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4245] Not fatal error
// [Interpretation 4248] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
@ -769,7 +769,7 @@ class SermondistributorModelSermon extends JModelAdmin
list($this->table->name, $this->table->alias) = $this->generateNewTitle($this->table->catid, $this->table->alias, $this->table->name);
}
// [Interpretation 4281] insert all set values
// [Interpretation 4284] insert all set values
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
@ -781,7 +781,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
}
// [Interpretation 4293] update all uniqe fields
// [Interpretation 4296] update all uniqe fields
if (SermondistributorHelper::checkArray($uniqeFields))
{
foreach ($uniqeFields as $uniqeField)
@ -790,13 +790,13 @@ class SermondistributorModelSermon extends JModelAdmin
}
}
// [Interpretation 4302] Reset the ID because we are making a copy
// [Interpretation 4305] Reset the ID because we are making a copy
$this->table->id = 0;
// [Interpretation 4305] TODO: Deal with ordering?
// [Interpretation 4306] $this->table->ordering = 1;
// [Interpretation 4308] TODO: Deal with ordering?
// [Interpretation 4309] $this->table->ordering = 1;
// [Interpretation 4308] Check the row.
// [Interpretation 4311] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -809,7 +809,7 @@ class SermondistributorModelSermon extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4321] Store the row.
// [Interpretation 4324] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -817,14 +817,14 @@ class SermondistributorModelSermon extends JModelAdmin
return false;
}
// [Interpretation 4329] Get the new item ID
// [Interpretation 4332] Get the new item ID
$newId = $this->table->get('id');
// [Interpretation 4332] Add the new ID to the array
// [Interpretation 4335] Add the new ID to the array
$newIds[$pk] = $newId;
}
// [Interpretation 4336] Clean the cache
// [Interpretation 4339] Clean the cache
$this->cleanCache();
return $newIds;
@ -845,7 +845,7 @@ class SermondistributorModelSermon extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 3950] Set some needed variables.
// [Interpretation 3953] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -860,12 +860,12 @@ class SermondistributorModelSermon extends JModelAdmin
return false;
}
// [Interpretation 3972] make sure published only updates if user has the permission.
// [Interpretation 3975] make sure published only updates if user has the permission.
if (isset($values['published']) && !$this->canDo->get('sermon.edit.state'))
{
unset($values['published']);
}
// [Interpretation 3985] remove move_copy from array
// [Interpretation 3988] remove move_copy from array
unset($values['move_copy']);
if (isset($values['category']) && (int) $values['category'] > 0 && !static::checkCategoryId($values['category']))
@ -874,7 +874,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
elseif (isset($values['category']) && (int) $values['category'] > 0)
{
// [Interpretation 3996] move the category value to correct field name
// [Interpretation 3999] move the category value to correct field name
$values['catid'] = $values['category'];
unset($values['category']);
}
@ -884,7 +884,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
// [Interpretation 4006] Parent exists so we proceed
// [Interpretation 4009] Parent exists so we proceed
foreach ($pks as $pk)
{
if (!$this->user->authorise('sermon.edit', $contexts[$pk]))
@ -894,30 +894,30 @@ class SermondistributorModelSermon extends JModelAdmin
return false;
}
// [Interpretation 4023] Check that the row actually exists
// [Interpretation 4026] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4028] Fatal error
// [Interpretation 4031] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4035] Not fatal error
// [Interpretation 4038] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
}
// [Interpretation 4041] insert all set values.
// [Interpretation 4044] insert all set values.
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
{
// [Interpretation 4046] Do special action for access.
// [Interpretation 4049] Do special action for access.
if ('access' == $key && strlen($value) > 0)
{
$this->table->$key = $value;
@ -930,7 +930,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
// [Interpretation 4058] Check the row.
// [Interpretation 4061] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -943,7 +943,7 @@ class SermondistributorModelSermon extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4071] Store the row.
// [Interpretation 4074] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -952,7 +952,7 @@ class SermondistributorModelSermon extends JModelAdmin
}
}
// [Interpretation 4080] Clean the cache
// [Interpretation 4083] Clean the cache
$this->cleanCache();
return true;
@ -1002,7 +1002,7 @@ class SermondistributorModelSermon extends JModelAdmin
$data['params'] = (string) $params;
}
// [Interpretation 4362] Alter the name for save as copy
// [Interpretation 4365] Alter the name for save as copy
if ($input->get('task') == 'save2copy')
{
$origTable = clone $this->getTable();
@ -1025,7 +1025,7 @@ class SermondistributorModelSermon extends JModelAdmin
$data['published'] = 0;
}
// [Interpretation 4389] Automatic handling of alias for empty fields
// [Interpretation 4392] Automatic handling of alias for empty fields
if (in_array($input->get('task'), array('apply', 'save', 'save2new')) && (int) $input->get('id') == 0)
{
if ($data['alias'] == null)
@ -1056,10 +1056,10 @@ class SermondistributorModelSermon extends JModelAdmin
}
}
// [Interpretation 4428] Alter the uniqe field for save as copy
// [Interpretation 4431] Alter the uniqe field for save as copy
if ($input->get('task') == 'save2copy')
{
// [Interpretation 4431] Automatic handling of other uniqe fields
// [Interpretation 4434] Automatic handling of other uniqe fields
$uniqeFields = $this->getUniqeFields();
if (SermondistributorHelper::checkArray($uniqeFields))
{
@ -1113,7 +1113,7 @@ class SermondistributorModelSermon extends JModelAdmin
protected function _generateNewTitle($alias, $title)
{
// [Interpretation 4462] Alter the title & alias
// [Interpretation 4465] Alter the title & alias
$table = $this->getTable();
while ($table->load(array('alias' => $alias)))

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermondistributor.php
@ -45,7 +45,7 @@ class SermondistributorModelSermondistributor extends JModelList
$viewGroups = array(
'main' => array('png.preacher.add', 'png.preachers', 'png.sermon.add', 'png.sermons', 'png.sermons.catid', 'png.series.add', 'png.series_list', 'png.statistics', 'png.help_documents')
);
// [Interpretation 10183] view access array
// [Interpretation 10186] view access array
$viewAccess = array(
'preacher.create' => 'preacher.create',
'preachers.access' => 'preacher.access',

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermons.php
@ -129,16 +129,16 @@ class SermondistributorModelSermons extends JModelList
*/
public function getItems()
{
// [Interpretation 9726] check in items
// [Interpretation 9729] check in items
$this->checkInNow();
// load parent items
$items = parent::getItems();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -152,14 +152,14 @@ class SermondistributorModelSermons extends JModelList
}
}
// [Interpretation 10067] set selection value to a translatable value
// [Interpretation 10070] set selection value to a translatable value
if (SermondistributorHelper::checkArray($items))
{
foreach ($items as $nr => &$item)
{
// [Interpretation 10074] convert link_type
// [Interpretation 10077] convert link_type
$item->link_type = $this->selectionTranslation($item->link_type, 'link_type');
// [Interpretation 10074] convert source
// [Interpretation 10077] convert source
$item->source = $this->selectionTranslation($item->source, 'source');
}
}
@ -176,20 +176,20 @@ class SermondistributorModelSermons extends JModelList
*/
public function selectionTranslation($value,$name)
{
// [Interpretation 10100] Array of link_type language strings
// [Interpretation 10103] Array of link_type language strings
if ($name == 'link_type')
{
$link_typeArray = array(
1 => 'COM_SERMONDISTRIBUTOR_SERMON_ENCRYPTED',
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DIRECT'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($link_typeArray[$value]) && SermondistributorHelper::checkString($link_typeArray[$value]))
{
return $link_typeArray[$value];
}
}
// [Interpretation 10100] Array of source language strings
// [Interpretation 10103] Array of source language strings
if ($name == 'source')
{
$sourceArray = array(
@ -198,7 +198,7 @@ class SermondistributorModelSermons extends JModelList
2 => 'COM_SERMONDISTRIBUTOR_SERMON_DROPBOX',
3 => 'COM_SERMONDISTRIBUTOR_SERMON_URL'
);
// [Interpretation 10131] Now check if value is found in this array
// [Interpretation 10134] Now check if value is found in this array
if (isset($sourceArray[$value]) && SermondistributorHelper::checkString($sourceArray[$value]))
{
return $sourceArray[$value];
@ -214,29 +214,29 @@ class SermondistributorModelSermons extends JModelList
*/
protected function getListQuery()
{
// [Interpretation 6681] Get the user object.
// [Interpretation 6684] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6683] Create a new query object.
// [Interpretation 6686] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6686] Select some fields
// [Interpretation 6689] Select some fields
$query->select('a.*');
$query->select($db->quoteName('c.title','category_title'));
// [Interpretation 6693] From the sermondistributor_item table
// [Interpretation 6696] From the sermondistributor_item table
$query->from($db->quoteName('#__sermondistributor_sermon', 'a'));
$query->join('LEFT', $db->quoteName('#__categories', 'c') . ' ON (' . $db->quoteName('a.catid') . ' = ' . $db->quoteName('c.id') . ')');
// [Interpretation 6834] From the sermondistributor_preacher table.
// [Interpretation 6837] From the sermondistributor_preacher table.
$query->select($db->quoteName('g.name','preacher_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_preacher', 'g') . ' ON (' . $db->quoteName('a.preacher') . ' = ' . $db->quoteName('g.id') . ')');
// [Interpretation 6834] From the sermondistributor_series table.
// [Interpretation 6837] From the sermondistributor_series table.
$query->select($db->quoteName('h.name','series_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_series', 'h') . ' ON (' . $db->quoteName('a.series') . ' = ' . $db->quoteName('h.id') . ')');
// [Interpretation 6707] Filter by published state
// [Interpretation 6710] Filter by published state
$published = $this->getState('filter.published');
if (is_numeric($published))
{
@ -247,21 +247,21 @@ class SermondistributorModelSermons extends JModelList
$query->where('(a.published = 0 OR a.published = 1)');
}
// [Interpretation 6719] Join over the asset groups.
// [Interpretation 6722] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6722] Filter by access level.
// [Interpretation 6725] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6727] Implement View Level Access
// [Interpretation 6730] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6804] Filter by search.
// [Interpretation 6807] Filter by search.
$search = $this->getState('filter.search');
if (!empty($search))
{
@ -276,28 +276,28 @@ class SermondistributorModelSermons extends JModelList
}
}
// [Interpretation 6920] Filter by preacher.
// [Interpretation 6923] Filter by preacher.
if ($preacher = $this->getState('filter.preacher'))
{
$query->where('a.preacher = ' . $db->quote($db->escape($preacher, true)));
}
// [Interpretation 6920] Filter by series.
// [Interpretation 6923] Filter by series.
if ($series = $this->getState('filter.series'))
{
$query->where('a.series = ' . $db->quote($db->escape($series, true)));
}
// [Interpretation 6929] Filter by Link_type.
// [Interpretation 6932] Filter by Link_type.
if ($link_type = $this->getState('filter.link_type'))
{
$query->where('a.link_type = ' . $db->quote($db->escape($link_type, true)));
}
// [Interpretation 6929] Filter by Source.
// [Interpretation 6932] Filter by Source.
if ($source = $this->getState('filter.source'))
{
$query->where('a.source = ' . $db->quote($db->escape($source, true)));
}
// [Interpretation 6741] Filter by a single or group of categories.
// [Interpretation 6744] Filter by a single or group of categories.
$baselevel = 1;
$categoryId = $this->getState('filter.category_id');
@ -319,7 +319,7 @@ class SermondistributorModelSermons extends JModelList
}
// [Interpretation 6763] Add the list ordering clause.
// [Interpretation 6766] Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.id');
$orderDirn = $this->state->get('list.direction', 'asc');
if ($orderCol != '')
@ -337,42 +337,42 @@ class SermondistributorModelSermons extends JModelList
*/
public function getExportData($pks)
{
// [Interpretation 6471] setup the query
// [Interpretation 6474] setup the query
if (SermondistributorHelper::checkArray($pks))
{
// [Interpretation 6474] Get the user object.
// [Interpretation 6477] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6476] Create a new query object.
// [Interpretation 6479] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6479] Select some fields
// [Interpretation 6482] Select some fields
$query->select('a.*');
// [Interpretation 6481] From the sermondistributor_sermon table
// [Interpretation 6484] From the sermondistributor_sermon table
$query->from($db->quoteName('#__sermondistributor_sermon', 'a'));
$query->where('a.id IN (' . implode(',',$pks) . ')');
// [Interpretation 6491] Implement View Level Access
// [Interpretation 6494] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6498] Order the results by ordering
// [Interpretation 6501] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6500] Load the items
// [Interpretation 6503] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -383,13 +383,13 @@ class SermondistributorModelSermons extends JModelList
continue;
}
// [Interpretation 10014] unset the values we don't want exported.
// [Interpretation 10017] unset the values we don't want exported.
unset($item->asset_id);
unset($item->checked_out);
unset($item->checked_out_time);
}
}
// [Interpretation 10023] Add headers to items array.
// [Interpretation 10026] Add headers to items array.
$headers = $this->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
@ -408,13 +408,13 @@ class SermondistributorModelSermons extends JModelList
*/
public function getExImPortHeaders()
{
// [Interpretation 6520] Get a db connection.
// [Interpretation 6523] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 6522] get the columns
// [Interpretation 6525] get the columns
$columns = $db->getTableColumns("#__sermondistributor_sermon");
if (SermondistributorHelper::checkArray($columns))
{
// [Interpretation 6526] remove the headers you don't import/export.
// [Interpretation 6529] remove the headers you don't import/export.
unset($columns['asset_id']);
unset($columns['checked_out']);
unset($columns['checked_out_time']);
@ -436,7 +436,7 @@ class SermondistributorModelSermons extends JModelList
*/
protected function getStoreId($id = '')
{
// [Interpretation 9349] Compile the store id.
// [Interpretation 9352] Compile the store id.
$id .= ':' . $this->getState('filter.id');
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.published');
@ -464,15 +464,15 @@ class SermondistributorModelSermons extends JModelList
*/
protected function checkInNow()
{
// [Interpretation 9742] Get set check in time
// [Interpretation 9745] Get set check in time
$time = JComponentHelper::getParams('com_sermondistributor')->get('check_in');
if ($time)
{
// [Interpretation 9747] Get a db connection.
// [Interpretation 9750] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 9749] reset query
// [Interpretation 9752] reset query
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__sermondistributor_sermon'));
@ -480,24 +480,24 @@ class SermondistributorModelSermons extends JModelList
$db->execute();
if ($db->getNumRows())
{
// [Interpretation 9757] Get Yesterdays date
// [Interpretation 9760] Get Yesterdays date
$date = JFactory::getDate()->modify($time)->toSql();
// [Interpretation 9759] reset query
// [Interpretation 9762] reset query
$query = $db->getQuery(true);
// [Interpretation 9761] Fields to update.
// [Interpretation 9764] Fields to update.
$fields = array(
$db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'',
$db->quoteName('checked_out') . '=0'
);
// [Interpretation 9766] Conditions for which records should be updated.
// [Interpretation 9769] Conditions for which records should be updated.
$conditions = array(
$db->quoteName('checked_out') . '!=0',
$db->quoteName('checked_out_time') . '<\''.$date.'\''
);
// [Interpretation 9771] Check table
// [Interpretation 9774] Check table
$query->update($db->quoteName('#__sermondistributor_sermon'))->set($fields)->where($conditions);
$db->setQuery($query);

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistic.php
@ -116,7 +116,7 @@ class SermondistributorModelStatistic extends JModelAdmin
* @since 1.6
*/
public function getForm($data = array(), $loadData = true)
{ // [Interpretation 8732] Get the form.
{ // [Interpretation 8735] Get the form.
$form = $this->loadForm('com_sermondistributor.statistic', 'statistic', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form))
@ -126,12 +126,12 @@ class SermondistributorModelStatistic extends JModelAdmin
$jinput = JFactory::getApplication()->input;
// [Interpretation 8817] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
// [Interpretation 8820] The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
if ($jinput->get('a_id'))
{
$id = $jinput->get('a_id', 0, 'INT');
}
// [Interpretation 8822] The back end uses id so we use that the rest of the time and set it to 0 by default.
// [Interpretation 8825] The back end uses id so we use that the rest of the time and set it to 0 by default.
else
{
$id = $jinput->get('id', 0, 'INT');
@ -139,54 +139,54 @@ class SermondistributorModelStatistic extends JModelAdmin
$user = JFactory::getUser();
// [Interpretation 8828] Check for existing item.
// [Interpretation 8829] Modify the form based on Edit State access controls.
// [Interpretation 8831] Check for existing item.
// [Interpretation 8832] Modify the form based on Edit State access controls.
if ($id != 0 && (!$user->authorise('statistic.edit.state', 'com_sermondistributor.statistic.' . (int) $id))
|| ($id == 0 && !$user->authorise('statistic.edit.state', 'com_sermondistributor')))
{
// [Interpretation 8842] Disable fields for display.
// [Interpretation 8845] Disable fields for display.
$form->setFieldAttribute('ordering', 'disabled', 'true');
$form->setFieldAttribute('published', 'disabled', 'true');
// [Interpretation 8845] Disable fields while saving.
// [Interpretation 8848] Disable fields while saving.
$form->setFieldAttribute('ordering', 'filter', 'unset');
$form->setFieldAttribute('published', 'filter', 'unset');
}
// [Interpretation 8850] If this is a new item insure the greated by is set.
// [Interpretation 8853] If this is a new item insure the greated by is set.
if (0 == $id)
{
// [Interpretation 8853] Set the created_by to this user
// [Interpretation 8856] Set the created_by to this user
$form->setValue('created_by', null, $user->id);
}
// [Interpretation 8856] Modify the form based on Edit Creaded By access controls.
// [Interpretation 8859] Modify the form based on Edit Creaded By access controls.
if ($id != 0 && (!$user->authorise('statistic.edit.created_by', 'com_sermondistributor.statistic.' . (int) $id))
|| ($id == 0 && !$user->authorise('statistic.edit.created_by', 'com_sermondistributor')))
{
// [Interpretation 8868] Disable fields for display.
// [Interpretation 8871] Disable fields for display.
$form->setFieldAttribute('created_by', 'disabled', 'true');
// [Interpretation 8870] Disable fields for display.
// [Interpretation 8873] Disable fields for display.
$form->setFieldAttribute('created_by', 'readonly', 'true');
// [Interpretation 8872] Disable fields while saving.
// [Interpretation 8875] Disable fields while saving.
$form->setFieldAttribute('created_by', 'filter', 'unset');
}
// [Interpretation 8875] Modify the form based on Edit Creaded Date access controls.
// [Interpretation 8878] Modify the form based on Edit Creaded Date access controls.
if ($id != 0 && (!$user->authorise('statistic.edit.created', 'com_sermondistributor.statistic.' . (int) $id))
|| ($id == 0 && !$user->authorise('statistic.edit.created', 'com_sermondistributor')))
{
// [Interpretation 8887] Disable fields for display.
// [Interpretation 8890] Disable fields for display.
$form->setFieldAttribute('created', 'disabled', 'true');
// [Interpretation 8889] Disable fields while saving.
// [Interpretation 8892] Disable fields while saving.
$form->setFieldAttribute('created', 'filter', 'unset');
}
// [Interpretation 8922] Only load these values if no id is found
// [Interpretation 8925] Only load these values if no id is found
if (0 == $id)
{
// [Interpretation 8925] Set redirected field name
// [Interpretation 8928] Set redirected field name
$redirectedField = $jinput->get('ref', null, 'STRING');
// [Interpretation 8927] Set redirected field value
// [Interpretation 8930] Set redirected field value
$redirectedValue = $jinput->get('refid', 0, 'INT');
if (0 != $redirectedValue && $redirectedField)
{
// [Interpretation 8931] Now set the local-redirected field default value
// [Interpretation 8934] Now set the local-redirected field default value
$form->setValue($redirectedField, null, $redirectedValue);
}
}
@ -223,7 +223,7 @@ class SermondistributorModelStatistic extends JModelAdmin
}
$user = JFactory::getUser();
// [Interpretation 9053] The record has been set. Check the record permissions.
// [Interpretation 9056] The record has been set. Check the record permissions.
return $user->authorise('statistic.delete', 'com_sermondistributor.statistic.' . (int) $record->id);
}
return false;
@ -245,14 +245,14 @@ class SermondistributorModelStatistic extends JModelAdmin
if ($recordId)
{
// [Interpretation 9140] The record has been set. Check the record permissions.
// [Interpretation 9143] The record has been set. Check the record permissions.
$permission = $user->authorise('statistic.edit.state', 'com_sermondistributor.statistic.' . (int) $recordId);
if (!$permission && !is_null($permission))
{
return false;
}
}
// [Interpretation 9157] In the absense of better information, revert to the component permissions.
// [Interpretation 9160] In the absense of better information, revert to the component permissions.
return $user->authorise('statistic.edit.state', 'com_sermondistributor');
}
@ -267,7 +267,7 @@ class SermondistributorModelStatistic extends JModelAdmin
*/
protected function allowEdit($data = array(), $key = 'id')
{
// [Interpretation 8965] Check specific edit permission then general edit permission.
// [Interpretation 8968] Check specific edit permission then general edit permission.
$user = JFactory::getUser();
return $user->authorise('statistic.edit', 'com_sermondistributor.statistic.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('statistic.edit', 'com_sermondistributor');
@ -493,7 +493,7 @@ class SermondistributorModelStatistic extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 4148] Set some needed variables.
// [Interpretation 4151] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -507,12 +507,12 @@ class SermondistributorModelStatistic extends JModelAdmin
return false;
}
// [Interpretation 4168] get list of uniqe fields
// [Interpretation 4171] get list of uniqe fields
$uniqeFields = $this->getUniqeFields();
// [Interpretation 4170] remove move_copy from array
// [Interpretation 4173] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4173] make sure published is set
// [Interpretation 4176] make sure published is set
if (!isset($values['published']))
{
$values['published'] = 0;
@ -524,21 +524,21 @@ class SermondistributorModelStatistic extends JModelAdmin
$newIds = array();
// [Interpretation 4210] Parent exists so let's proceed
// [Interpretation 4213] Parent exists so let's proceed
while (!empty($pks))
{
// [Interpretation 4213] Pop the first ID off the stack
// [Interpretation 4216] Pop the first ID off the stack
$pk = array_shift($pks);
$this->table->reset();
// [Interpretation 4218] only allow copy if user may edit this item.
// [Interpretation 4221] only allow copy if user may edit this item.
if (!$this->user->authorise('statistic.edit', $contexts[$pk]))
{
// [Interpretation 4228] Not fatal error
// [Interpretation 4231] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
@ -546,19 +546,19 @@ class SermondistributorModelStatistic extends JModelAdmin
}
// [Interpretation 4233] Check that the row actually exists
// [Interpretation 4236] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4238] Fatal error
// [Interpretation 4241] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4245] Not fatal error
// [Interpretation 4248] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
@ -566,7 +566,7 @@ class SermondistributorModelStatistic extends JModelAdmin
$this->table->filename = $this->generateUniqe('filename',$this->table->filename);
// [Interpretation 4281] insert all set values
// [Interpretation 4284] insert all set values
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
@ -578,7 +578,7 @@ class SermondistributorModelStatistic extends JModelAdmin
}
}
// [Interpretation 4293] update all uniqe fields
// [Interpretation 4296] update all uniqe fields
if (SermondistributorHelper::checkArray($uniqeFields))
{
foreach ($uniqeFields as $uniqeField)
@ -587,13 +587,13 @@ class SermondistributorModelStatistic extends JModelAdmin
}
}
// [Interpretation 4302] Reset the ID because we are making a copy
// [Interpretation 4305] Reset the ID because we are making a copy
$this->table->id = 0;
// [Interpretation 4305] TODO: Deal with ordering?
// [Interpretation 4306] $this->table->ordering = 1;
// [Interpretation 4308] TODO: Deal with ordering?
// [Interpretation 4309] $this->table->ordering = 1;
// [Interpretation 4308] Check the row.
// [Interpretation 4311] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -606,7 +606,7 @@ class SermondistributorModelStatistic extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4321] Store the row.
// [Interpretation 4324] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -614,14 +614,14 @@ class SermondistributorModelStatistic extends JModelAdmin
return false;
}
// [Interpretation 4329] Get the new item ID
// [Interpretation 4332] Get the new item ID
$newId = $this->table->get('id');
// [Interpretation 4332] Add the new ID to the array
// [Interpretation 4335] Add the new ID to the array
$newIds[$pk] = $newId;
}
// [Interpretation 4336] Clean the cache
// [Interpretation 4339] Clean the cache
$this->cleanCache();
return $newIds;
@ -642,7 +642,7 @@ class SermondistributorModelStatistic extends JModelAdmin
{
if (empty($this->batchSet))
{
// [Interpretation 3950] Set some needed variables.
// [Interpretation 3953] Set some needed variables.
$this->user = JFactory::getUser();
$this->table = $this->getTable();
$this->tableClassName = get_class($this->table);
@ -657,15 +657,15 @@ class SermondistributorModelStatistic extends JModelAdmin
return false;
}
// [Interpretation 3972] make sure published only updates if user has the permission.
// [Interpretation 3975] make sure published only updates if user has the permission.
if (isset($values['published']) && !$this->canDo->get('statistic.edit.state'))
{
unset($values['published']);
}
// [Interpretation 3985] remove move_copy from array
// [Interpretation 3988] remove move_copy from array
unset($values['move_copy']);
// [Interpretation 4006] Parent exists so we proceed
// [Interpretation 4009] Parent exists so we proceed
foreach ($pks as $pk)
{
if (!$this->user->authorise('statistic.edit', $contexts[$pk]))
@ -675,30 +675,30 @@ class SermondistributorModelStatistic extends JModelAdmin
return false;
}
// [Interpretation 4023] Check that the row actually exists
// [Interpretation 4026] Check that the row actually exists
if (!$this->table->load($pk))
{
if ($error = $this->table->getError())
{
// [Interpretation 4028] Fatal error
// [Interpretation 4031] Fatal error
$this->setError($error);
return false;
}
else
{
// [Interpretation 4035] Not fatal error
// [Interpretation 4038] Not fatal error
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
continue;
}
}
// [Interpretation 4041] insert all set values.
// [Interpretation 4044] insert all set values.
if (SermondistributorHelper::checkArray($values))
{
foreach ($values as $key => $value)
{
// [Interpretation 4046] Do special action for access.
// [Interpretation 4049] Do special action for access.
if ('access' == $key && strlen($value) > 0)
{
$this->table->$key = $value;
@ -711,7 +711,7 @@ class SermondistributorModelStatistic extends JModelAdmin
}
// [Interpretation 4058] Check the row.
// [Interpretation 4061] Check the row.
if (!$this->table->check())
{
$this->setError($this->table->getError());
@ -724,7 +724,7 @@ class SermondistributorModelStatistic extends JModelAdmin
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
}
// [Interpretation 4071] Store the row.
// [Interpretation 4074] Store the row.
if (!$this->table->store())
{
$this->setError($this->table->getError());
@ -733,7 +733,7 @@ class SermondistributorModelStatistic extends JModelAdmin
}
}
// [Interpretation 4080] Clean the cache
// [Interpretation 4083] Clean the cache
$this->cleanCache();
return true;
@ -771,10 +771,10 @@ class SermondistributorModelStatistic extends JModelAdmin
$data['params'] = (string) $params;
}
// [Interpretation 4428] Alter the uniqe field for save as copy
// [Interpretation 4431] Alter the uniqe field for save as copy
if ($input->get('task') == 'save2copy')
{
// [Interpretation 4431] Automatic handling of other uniqe fields
// [Interpretation 4434] Automatic handling of other uniqe fields
$uniqeFields = $this->getUniqeFields();
if (SermondistributorHelper::checkArray($uniqeFields))
{
@ -827,7 +827,7 @@ class SermondistributorModelStatistic extends JModelAdmin
protected function _generateNewTitle($title)
{
// [Interpretation 4486] Alter the title
// [Interpretation 4489] Alter the title
$table = $this->getTable();
while ($table->load(array('title' => $title)))

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage statistics.php
@ -113,16 +113,16 @@ class SermondistributorModelStatistics extends JModelList
*/
public function getItems()
{
// [Interpretation 9726] check in items
// [Interpretation 9729] check in items
$this->checkInNow();
// load parent items
$items = parent::getItems();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -147,31 +147,31 @@ class SermondistributorModelStatistics extends JModelList
*/
protected function getListQuery()
{
// [Interpretation 6681] Get the user object.
// [Interpretation 6684] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6683] Create a new query object.
// [Interpretation 6686] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6686] Select some fields
// [Interpretation 6689] Select some fields
$query->select('a.*');
// [Interpretation 6693] From the sermondistributor_item table
// [Interpretation 6696] From the sermondistributor_item table
$query->from($db->quoteName('#__sermondistributor_statistic', 'a'));
// [Interpretation 6834] From the sermondistributor_sermon table.
// [Interpretation 6837] From the sermondistributor_sermon table.
$query->select($db->quoteName('g.name','sermon_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_sermon', 'g') . ' ON (' . $db->quoteName('a.sermon') . ' = ' . $db->quoteName('g.id') . ')');
// [Interpretation 6834] From the sermondistributor_preacher table.
// [Interpretation 6837] From the sermondistributor_preacher table.
$query->select($db->quoteName('h.name','preacher_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_preacher', 'h') . ' ON (' . $db->quoteName('a.preacher') . ' = ' . $db->quoteName('h.id') . ')');
// [Interpretation 6834] From the sermondistributor_series table.
// [Interpretation 6837] From the sermondistributor_series table.
$query->select($db->quoteName('i.name','series_name'));
$query->join('LEFT', $db->quoteName('#__sermondistributor_series', 'i') . ' ON (' . $db->quoteName('a.series') . ' = ' . $db->quoteName('i.id') . ')');
// [Interpretation 6707] Filter by published state
// [Interpretation 6710] Filter by published state
$published = $this->getState('filter.published');
if (is_numeric($published))
{
@ -182,21 +182,21 @@ class SermondistributorModelStatistics extends JModelList
$query->where('(a.published = 0 OR a.published = 1)');
}
// [Interpretation 6719] Join over the asset groups.
// [Interpretation 6722] Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// [Interpretation 6722] Filter by access level.
// [Interpretation 6725] Filter by access level.
if ($access = $this->getState('filter.access'))
{
$query->where('a.access = ' . (int) $access);
}
// [Interpretation 6727] Implement View Level Access
// [Interpretation 6730] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6804] Filter by search.
// [Interpretation 6807] Filter by search.
$search = $this->getState('filter.search');
if (!empty($search))
{
@ -211,23 +211,23 @@ class SermondistributorModelStatistics extends JModelList
}
}
// [Interpretation 6920] Filter by sermon.
// [Interpretation 6923] Filter by sermon.
if ($sermon = $this->getState('filter.sermon'))
{
$query->where('a.sermon = ' . $db->quote($db->escape($sermon, true)));
}
// [Interpretation 6920] Filter by preacher.
// [Interpretation 6923] Filter by preacher.
if ($preacher = $this->getState('filter.preacher'))
{
$query->where('a.preacher = ' . $db->quote($db->escape($preacher, true)));
}
// [Interpretation 6920] Filter by series.
// [Interpretation 6923] Filter by series.
if ($series = $this->getState('filter.series'))
{
$query->where('a.series = ' . $db->quote($db->escape($series, true)));
}
// [Interpretation 6763] Add the list ordering clause.
// [Interpretation 6766] Add the list ordering clause.
$orderCol = $this->state->get('list.ordering', 'a.id');
$orderDirn = $this->state->get('list.direction', 'asc');
if ($orderCol != '')
@ -245,42 +245,42 @@ class SermondistributorModelStatistics extends JModelList
*/
public function getExportData($pks)
{
// [Interpretation 6471] setup the query
// [Interpretation 6474] setup the query
if (SermondistributorHelper::checkArray($pks))
{
// [Interpretation 6474] Get the user object.
// [Interpretation 6477] Get the user object.
$user = JFactory::getUser();
// [Interpretation 6476] Create a new query object.
// [Interpretation 6479] Create a new query object.
$db = JFactory::getDBO();
$query = $db->getQuery(true);
// [Interpretation 6479] Select some fields
// [Interpretation 6482] Select some fields
$query->select('a.*');
// [Interpretation 6481] From the sermondistributor_statistic table
// [Interpretation 6484] From the sermondistributor_statistic table
$query->from($db->quoteName('#__sermondistributor_statistic', 'a'));
$query->where('a.id IN (' . implode(',',$pks) . ')');
// [Interpretation 6491] Implement View Level Access
// [Interpretation 6494] Implement View Level Access
if (!$user->authorise('core.options', 'com_sermondistributor'))
{
$groups = implode(',', $user->getAuthorisedViewLevels());
$query->where('a.access IN (' . $groups . ')');
}
// [Interpretation 6498] Order the results by ordering
// [Interpretation 6501] Order the results by ordering
$query->order('a.ordering ASC');
// [Interpretation 6500] Load the items
// [Interpretation 6503] Load the items
$db->setQuery($query);
$db->execute();
if ($db->getNumRows())
{
$items = $db->loadObjectList();
// [Interpretation 9801] set values to display correctly.
// [Interpretation 9804] set values to display correctly.
if (SermondistributorHelper::checkArray($items))
{
// [Interpretation 9804] get user object.
// [Interpretation 9807] get user object.
$user = JFactory::getUser();
foreach ($items as $nr => &$item)
{
@ -291,13 +291,13 @@ class SermondistributorModelStatistics extends JModelList
continue;
}
// [Interpretation 10014] unset the values we don't want exported.
// [Interpretation 10017] unset the values we don't want exported.
unset($item->asset_id);
unset($item->checked_out);
unset($item->checked_out_time);
}
}
// [Interpretation 10023] Add headers to items array.
// [Interpretation 10026] Add headers to items array.
$headers = $this->getExImPortHeaders();
if (SermondistributorHelper::checkObject($headers))
{
@ -316,13 +316,13 @@ class SermondistributorModelStatistics extends JModelList
*/
public function getExImPortHeaders()
{
// [Interpretation 6520] Get a db connection.
// [Interpretation 6523] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 6522] get the columns
// [Interpretation 6525] get the columns
$columns = $db->getTableColumns("#__sermondistributor_statistic");
if (SermondistributorHelper::checkArray($columns))
{
// [Interpretation 6526] remove the headers you don't import/export.
// [Interpretation 6529] remove the headers you don't import/export.
unset($columns['asset_id']);
unset($columns['checked_out']);
unset($columns['checked_out_time']);
@ -344,7 +344,7 @@ class SermondistributorModelStatistics extends JModelList
*/
protected function getStoreId($id = '')
{
// [Interpretation 9349] Compile the store id.
// [Interpretation 9352] Compile the store id.
$id .= ':' . $this->getState('filter.id');
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.published');
@ -368,15 +368,15 @@ class SermondistributorModelStatistics extends JModelList
*/
protected function checkInNow()
{
// [Interpretation 9742] Get set check in time
// [Interpretation 9745] Get set check in time
$time = JComponentHelper::getParams('com_sermondistributor')->get('check_in');
if ($time)
{
// [Interpretation 9747] Get a db connection.
// [Interpretation 9750] Get a db connection.
$db = JFactory::getDbo();
// [Interpretation 9749] reset query
// [Interpretation 9752] reset query
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__sermondistributor_statistic'));
@ -384,24 +384,24 @@ class SermondistributorModelStatistics extends JModelList
$db->execute();
if ($db->getNumRows())
{
// [Interpretation 9757] Get Yesterdays date
// [Interpretation 9760] Get Yesterdays date
$date = JFactory::getDate()->modify($time)->toSql();
// [Interpretation 9759] reset query
// [Interpretation 9762] reset query
$query = $db->getQuery(true);
// [Interpretation 9761] Fields to update.
// [Interpretation 9764] Fields to update.
$fields = array(
$db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'',
$db->quoteName('checked_out') . '=0'
);
// [Interpretation 9766] Conditions for which records should be updated.
// [Interpretation 9769] Conditions for which records should be updated.
$conditions = array(
$db->quoteName('checked_out') . '!=0',
$db->quoteName('checked_out_time') . '<\''.$date.'\''
);
// [Interpretation 9771] Check table
// [Interpretation 9774] Check table
$query->update($db->quoteName('#__sermondistributor_statistic'))->set($fields)->where($conditions);
$db->setQuery($query);

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage sermondistributor.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage help_document.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage preacher.php

View File

@ -11,7 +11,7 @@
/-------------------------------------------------------------------------------------------------------------------------------/
@version 1.3.0
@build 3rd March, 2016
@build 7th March, 2016
@created 22nd October, 2015
@package Sermon Distributor
@subpackage series.php

Some files were not shown because too many files have changed in this diff Show More