Release of v3.0.8
Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes.
This commit is contained in:
parent
325ed17c92
commit
20bd3dfb8b
@ -1,3 +1,7 @@
|
||||
# v3.0.8
|
||||
|
||||
- Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes.
|
||||
|
||||
# v3.0.7
|
||||
|
||||
- Update getBible loader to version 3.1.0
|
||||
|
10
README.md
10
README.md
@ -1,4 +1,4 @@
|
||||
# Get Bible (3.0.7)
|
||||
# Get Bible (3.0.8)
|
||||
|
||||
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/master/admin/assets/images/vdm-component.jpg "GetBible")
|
||||
|
||||
@ -18,8 +18,8 @@ In essence, The Bible for Joomla is designed to transform how the Word of God is
|
||||
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
||||
+ *Name*: [Get Bible](https://getbible.net)
|
||||
+ *First Build*: 3rd December, 2015
|
||||
+ *Last Build*: 20th March, 2024
|
||||
+ *Version*: 3.0.7
|
||||
+ *Last Build*: 6th April, 2024
|
||||
+ *Version*: 3.0.8
|
||||
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
||||
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
@ -31,8 +31,8 @@ due to [Automated Component Builder](https://www.joomlacomponentbuilder.com))
|
||||
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
|
||||
> never making one mistake or taking any coffee break.)
|
||||
|
||||
+ *Line count*: **201801**
|
||||
+ *File count*: **1719**
|
||||
+ *Line count*: **201873**
|
||||
+ *File count*: **1720**
|
||||
+ *Folder count*: **150**
|
||||
|
||||
**372 Hours** or **47 Eight Hour Days** (the actual time the author spent)
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Get Bible (3.0.7)
|
||||
# Get Bible (3.0.8)
|
||||
|
||||
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/master/admin/assets/images/vdm-component.jpg "GetBible")
|
||||
|
||||
@ -18,8 +18,8 @@ In essence, The Bible for Joomla is designed to transform how the Word of God is
|
||||
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
||||
+ *Name*: [Get Bible](https://getbible.net)
|
||||
+ *First Build*: 3rd December, 2015
|
||||
+ *Last Build*: 20th March, 2024
|
||||
+ *Version*: 3.0.7
|
||||
+ *Last Build*: 6th April, 2024
|
||||
+ *Version*: 3.0.8
|
||||
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
||||
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
@ -31,8 +31,8 @@ due to [Automated Component Builder](https://www.joomlacomponentbuilder.com))
|
||||
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
|
||||
> never making one mistake or taking any coffee break.)
|
||||
|
||||
+ *Line count*: **201801**
|
||||
+ *File count*: **1719**
|
||||
+ *Line count*: **201873**
|
||||
+ *File count*: **1720**
|
||||
+ *Folder count*: **150**
|
||||
|
||||
**372 Hours** or **47 Eight Hour Days** (the actual time the author spent)
|
||||
|
@ -22,8 +22,8 @@ use Joomla\CMS\MVC\Controller\BaseController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* General Controller of Getbible component
|
||||
|
@ -24,8 +24,8 @@ use Joomla\CMS\MVC\Controller\AdminController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Session\Session;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
|
||||
/**
|
||||
* Books Admin Controller
|
||||
|
@ -24,8 +24,8 @@ use Joomla\CMS\MVC\Controller\AdminController;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Router\Route;
|
||||
use Joomla\CMS\Session\Session;
|
||||
use VDM\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Translations Admin Controller
|
||||
|
@ -22,10 +22,10 @@ defined('_JEXEC') or die('Restricted access');
|
||||
\spl_autoload_register(function ($class) {
|
||||
// project-specific base directories and namespace prefix
|
||||
$search = [
|
||||
'libraries/jcb_powers/VDM.Joomla.GetBible' => 'VDM\\Joomla\\GetBible',
|
||||
'libraries/jcb_powers/VDM.Joomla.Openai' => 'VDM\\Joomla\\Openai',
|
||||
'libraries/jcb_powers/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
|
||||
'libraries/jcb_powers/VDM.Joomla' => 'VDM\\Joomla'
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible' => 'TrueChristianChurch\\Joomla\\GetBible',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai' => 'TrueChristianChurch\\Joomla\\Openai',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea' => 'TrueChristianChurch\\Joomla\\Gitea',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla' => 'TrueChristianChurch\\Joomla'
|
||||
];
|
||||
// Start the search and load if found
|
||||
$found = false;
|
||||
|
@ -22,10 +22,10 @@ defined('_JEXEC') or die('Restricted access');
|
||||
\spl_autoload_register(function ($class) {
|
||||
// project-specific base directories and namespace prefix
|
||||
$search = [
|
||||
'libraries/jcb_powers/VDM.Joomla.GetBible' => 'VDM\\Joomla\\GetBible',
|
||||
'libraries/jcb_powers/VDM.Joomla.Openai' => 'VDM\\Joomla\\Openai',
|
||||
'libraries/jcb_powers/VDM.Joomla.Gitea' => 'VDM\\Joomla\\Gitea',
|
||||
'libraries/jcb_powers/VDM.Joomla' => 'VDM\\Joomla'
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.GetBible' => 'TrueChristianChurch\\Joomla\\GetBible',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.Openai' => 'TrueChristianChurch\\Joomla\\Openai',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla.Gitea' => 'TrueChristianChurch\\Joomla\\Gitea',
|
||||
'libraries/vendor_getbible/TrueChristianChurch.Joomla' => 'TrueChristianChurch\\Joomla'
|
||||
];
|
||||
// Start the search and load if found
|
||||
$found = false;
|
||||
@ -79,13 +79,13 @@ use Joomla\CMS\Version;
|
||||
use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use VDM\Joomla\Utilities\JsonHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\FormHelper;
|
||||
use TrueChristianChurch\Joomla\GetBible\Factory as GetBibleFactory;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\JsonHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\FormHelper;
|
||||
|
||||
/**
|
||||
* Getbible component helper.
|
||||
|
@ -21,8 +21,8 @@ defined('_JEXEC') or die('Restricted access');
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
|
||||
// set the defaults
|
||||
$items = $displayData->vvwnotes;
|
||||
|
@ -21,8 +21,8 @@ defined('_JEXEC') or die('Restricted access');
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
|
||||
// set the defaults
|
||||
$items = $displayData->vvxpasswords;
|
||||
|
@ -21,8 +21,8 @@ defined('_JEXEC') or die('Restricted access');
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
|
||||
// set the defaults
|
||||
$items = $displayData->vvvtags;
|
||||
|
@ -21,8 +21,8 @@ defined('_JEXEC') or die('Restricted access');
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
|
||||
// set the defaults
|
||||
$items = $displayData->vvymessage;
|
||||
|
@ -22,7 +22,7 @@ use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use VDM\Joomla\Utilities\Component\Helper;
|
||||
use TrueChristianChurch\Joomla\Utilities\Component\Helper;
|
||||
|
||||
// get the form
|
||||
$form = $displayData->getForm();
|
||||
|
@ -22,7 +22,7 @@ use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use Joomla\CMS\Layout\LayoutHelper;
|
||||
use VDM\Joomla\Utilities\Component\Helper;
|
||||
use TrueChristianChurch\Joomla\Utilities\Component\Helper;
|
||||
|
||||
// get the form
|
||||
$form = $displayData->getForm();
|
||||
|
@ -25,8 +25,8 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\Registry\Registry;
|
||||
use VDM\Joomla\Utilities\FileHelper;
|
||||
use VDM\Joomla\Gitea\Factory as GiteaFactory;
|
||||
use TrueChristianChurch\Joomla\Utilities\FileHelper;
|
||||
use TrueChristianChurch\Joomla\Gitea\Factory as GiteaFactory;
|
||||
|
||||
/**
|
||||
* Getbible Ajax List Model
|
||||
|
@ -30,8 +30,8 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Getbible Book Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Books List Model
|
||||
|
@ -30,8 +30,8 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Getbible Chapter Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Chapters List Model
|
||||
|
@ -100,7 +100,7 @@ class JFormFieldLinkers extends JFormFieldList
|
||||
if ($user->authorise('linker.edit', 'com_getbible') && $app->isClient('administrator')) // TODO for now only in admin area.
|
||||
{
|
||||
// build edit button
|
||||
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.Text::sprintf('COM_GETBIBLE_EDIT_S', $button_label).'" style="display: none; padding: 4px 4px 4px 7px;" href="#" >
|
||||
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.Text::sprintf('COM_GETBIBLE_EDIT_S', $button_label).'" style="display: none; padding: 3px 4px 4px 7px;" href="#" >
|
||||
<span class="icon-edit"></span></a>';
|
||||
// build script
|
||||
$script[] = "
|
||||
|
@ -100,7 +100,7 @@ class JFormFieldTagers extends JFormFieldList
|
||||
if ($user->authorise('tag.edit', 'com_getbible') && $app->isClient('administrator')) // TODO for now only in admin area.
|
||||
{
|
||||
// build edit button
|
||||
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.Text::sprintf('COM_GETBIBLE_EDIT_S', $button_label).'" style="display: none; padding: 4px 4px 4px 7px;" href="#" >
|
||||
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.Text::sprintf('COM_GETBIBLE_EDIT_S', $button_label).'" style="display: none; padding: 3px 4px 4px 7px;" href="#" >
|
||||
<span class="icon-edit"></span></a>';
|
||||
// build script
|
||||
$script[] = "
|
||||
|
@ -28,8 +28,8 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\Registry\Registry;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible List Model
|
||||
|
@ -30,11 +30,11 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Linker Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Linkers List Model
|
||||
|
@ -30,9 +30,9 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Note Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Notes List Model
|
||||
|
@ -30,8 +30,8 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Getbible Open_ai_message Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Open_ai_messages List Model
|
||||
|
@ -30,9 +30,9 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Open_ai_response Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Open_ai_responses List Model
|
||||
|
@ -30,10 +30,10 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Password Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Passwords List Model
|
||||
|
@ -30,10 +30,10 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Prompt Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Prompts List Model
|
||||
|
@ -30,10 +30,10 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Tag Admin Model
|
||||
|
@ -30,9 +30,9 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\GuidHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\GetHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GuidHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\GetHelper;
|
||||
|
||||
/**
|
||||
* Getbible Tagged_verse Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Tagged_verses List Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Tags List Model
|
||||
|
@ -30,8 +30,8 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Getbible Translation Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Translations List Model
|
||||
|
@ -30,8 +30,8 @@ use Joomla\Registry\Registry;
|
||||
use Joomla\String\StringHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper as UtilitiesStringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
|
||||
/**
|
||||
* Getbible Verse Admin Model
|
||||
|
@ -25,9 +25,9 @@ use Joomla\CMS\MVC\Model\ListModel;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\Utilities\ArrayHelper;
|
||||
use Joomla\CMS\Helper\TagsHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use VDM\Joomla\Utilities\ObjectHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ObjectHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Verses List Model
|
||||
|
1
admin/sql/updates/mysql/3.0.7.sql
Normal file
1
admin/sql/updates/mysql/3.0.7.sql
Normal file
@ -0,0 +1 @@
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Book Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Books
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Chapter Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Chapters
|
||||
|
@ -19,7 +19,7 @@
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\Language\Text;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
|
||||
?>
|
||||
<img alt="<?php echo Text::_('COM_GETBIBLE'); ?>" src="components/com_getbible/assets/images/vdm-component.jpg">
|
||||
|
@ -23,7 +23,7 @@ use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\HTML\HTMLHelper as Html;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible View class
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Linker Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Linkers
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Note Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Notes
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Open_ai_message Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Open_ai_messages
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Open_ai_response Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Open_ai_responses
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Password Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Passwords
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Prompt Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Prompts
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Tag Html View class
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Tagged_verse Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Tagged_verses
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Tags
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Translation Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Translations
|
||||
|
@ -30,7 +30,7 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Verse Html View class
|
||||
|
@ -30,8 +30,8 @@ use Joomla\CMS\Layout\FileLayout;
|
||||
use Joomla\CMS\MVC\View\HtmlView;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Toolbar\ToolbarHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\ArrayHelper;
|
||||
use TrueChristianChurch\Joomla\Utilities\StringHelper;
|
||||
|
||||
/**
|
||||
* Getbible Html View class for the Verses
|
||||
|
@ -1,15 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension type="component" version="3.10" method="upgrade">
|
||||
<name>COM_GETBIBLE</name>
|
||||
<creationDate>20th March, 2024</creationDate>
|
||||
<creationDate>6th April, 2024</creationDate>
|
||||
<author>Llewellyn van der Merwe</author>
|
||||
<authorEmail>joomla@vdm.io</authorEmail>
|
||||
<authorUrl>https://getbible.net</authorUrl>
|
||||
<copyright>Copyright (C) 2015. All Rights Reserved</copyright>
|
||||
<license>GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html</license>
|
||||
<version>3.0.7</version>
|
||||
<version>3.0.8</version>
|
||||
<description><![CDATA[
|
||||
<h1>Get Bible (v.3.0.7)</h1>
|
||||
<h1>Get Bible (v.3.0.8)</h1>
|
||||
<div style="clear: both;"></div>
|
||||
<p>Welcome to the next level of scripture engagement - The Bible for Joomla! Our purpose is to bring the Word of God to every person, in their native language, entirely free. This isn't just a typical extension; it's a groundbreaking tool developed to span language divides and deliver a rich, customizable Bible study experience to users worldwide.
|
||||
|
||||
|
@ -9,12 +9,12 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible;
|
||||
namespace TrueChristianChurch\Joomla\GetBible;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use VDM\Joomla\GetBible\Data\Response;
|
||||
use VDM\Joomla\GetBible\AI\Engineer;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Response;
|
||||
use TrueChristianChurch\Joomla\GetBible\AI\Engineer;
|
||||
|
||||
|
||||
/**
|
@ -9,14 +9,14 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\AI;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\AI;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Scripture;
|
||||
use VDM\Joomla\GetBible\Data\Prompt;
|
||||
use VDM\Joomla\GetBible\Data\Placeholders;
|
||||
use VDM\Joomla\Openai\Chat;
|
||||
use VDM\Joomla\GetBible\Database\Insert;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Placeholders;
|
||||
use TrueChristianChurch\Joomla\Openai\Chat;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Insert;
|
||||
|
||||
|
||||
/**
|
@ -9,12 +9,12 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Abstraction;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Abstraction;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Utilities\Http;
|
||||
use VDM\Joomla\GetBible\Utilities\Uri;
|
||||
use VDM\Joomla\GetBible\Utilities\Response;
|
||||
use TrueChristianChurch\Joomla\GetBible\Utilities\Http;
|
||||
use TrueChristianChurch\Joomla\GetBible\Utilities\Uri;
|
||||
use TrueChristianChurch\Joomla\GetBible\Utilities\Response;
|
||||
|
||||
|
||||
/**
|
@ -9,13 +9,13 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Abstraction;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Abstraction;
|
||||
|
||||
|
||||
use Joomla\CMS\Date\Date;
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Database\Insert;
|
||||
use VDM\Joomla\GetBible\Database\Update;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Insert;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Update;
|
||||
|
||||
|
||||
/**
|
@ -9,10 +9,10 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Api;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Api;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Abstraction\Api;
|
||||
use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
|
||||
|
||||
|
||||
/**
|
@ -9,10 +9,10 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Api;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Api;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Abstraction\Api;
|
||||
use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
|
||||
|
||||
|
||||
/**
|
@ -9,10 +9,10 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Api;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Api;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Abstraction\Api;
|
||||
use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
|
||||
|
||||
|
||||
/**
|
@ -9,10 +9,10 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Api;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Api;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Abstraction\Api;
|
||||
use TrueChristianChurch\Joomla\GetBible\Abstraction\Api;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible;
|
||||
namespace TrueChristianChurch\Joomla\GetBible;
|
||||
|
||||
|
||||
use VDM\Joomla\Utilities\Component\Helper;
|
||||
use VDM\Joomla\Abstraction\BaseConfig;
|
||||
use TrueChristianChurch\Joomla\Utilities\Component\Helper;
|
||||
use TrueChristianChurch\Joomla\Abstraction\BaseConfig;
|
||||
|
||||
|
||||
/**
|
@ -9,12 +9,12 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible;
|
||||
namespace TrueChristianChurch\Joomla\GetBible;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Config;
|
||||
use VDM\Joomla\GetBible\Utilities\Http;
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Utilities\Http;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Scripture;
|
||||
use VDM\Joomla\GetBible\Data\Prompt;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
|
||||
|
||||
/**
|
@ -9,13 +9,13 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Scripture;
|
||||
use VDM\Joomla\GetBible\Data\Prompt;
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Scripture;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
|
||||
|
||||
/**
|
@ -9,14 +9,14 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Translation;
|
||||
use VDM\Joomla\GetBible\Data\Book;
|
||||
use VDM\Joomla\GetBible\Data\Chapter;
|
||||
use VDM\Joomla\GetBible\Data\Verse;
|
||||
use VDM\Joomla\GetBible\Data\Word;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Translation;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Book;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Chapter;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Verse;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Word;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Database\Load;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Database\Load;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
|
||||
|
||||
/**
|
@ -9,13 +9,13 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Chapter;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use VDM\Joomla\GetBible\Data\Prompt;
|
||||
use VDM\Joomla\GetBible\Utilities\StringHelper;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Chapter;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
|
||||
use TrueChristianChurch\Joomla\GetBible\Utilities\StringHelper;
|
||||
|
||||
|
||||
/**
|
@ -9,12 +9,12 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Data;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Data;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Data\Verse;
|
||||
use VDM\Joomla\GetBible\Openai\Config;
|
||||
use VDM\Joomla\GetBible\Data\Prompt;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Verse;
|
||||
use TrueChristianChurch\Joomla\GetBible\Openai\Config;
|
||||
use TrueChristianChurch\Joomla\GetBible\Data\Prompt;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Database;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Database;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Model\Upsert as Model;
|
||||
use VDM\Joomla\Database\Insert as Database;
|
||||
use TrueChristianChurch\Joomla\GetBible\Model\Upsert as Model;
|
||||
use TrueChristianChurch\Joomla\Database\Insert as Database;
|
||||
|
||||
|
||||
/**
|
@ -9,12 +9,12 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Database;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Database;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Table;
|
||||
use VDM\Joomla\GetBible\Model\Load as Model;
|
||||
use VDM\Joomla\Database\Load as Database;
|
||||
use TrueChristianChurch\Joomla\GetBible\Table;
|
||||
use TrueChristianChurch\Joomla\GetBible\Model\Load as Model;
|
||||
use TrueChristianChurch\Joomla\Database\Load as Database;
|
||||
|
||||
|
||||
/**
|
@ -9,11 +9,11 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible\Database;
|
||||
namespace TrueChristianChurch\Joomla\GetBible\Database;
|
||||
|
||||
|
||||
use VDM\Joomla\GetBible\Model\Upsert as Model;
|
||||
use VDM\Joomla\Database\Update as Database;
|
||||
use TrueChristianChurch\Joomla\GetBible\Model\Upsert as Model;
|
||||
use TrueChristianChurch\Joomla\Database\Update as Database;
|
||||
|
||||
|
||||
/**
|
@ -9,17 +9,17 @@
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
namespace VDM\Joomla\GetBible;
|
||||
namespace TrueChristianChurch\Joomla\GetBible;
|
||||
|
||||
|
||||
use Joomla\DI\Container;
|
||||
use VDM\Joomla\GetBible\Service\Api;
|
||||
use VDM\Joomla\GetBible\Service\Utilities;
|
||||
use VDM\Joomla\GetBible\Service\Watcher;
|
||||
use VDM\Joomla\GetBible\Service\App;
|
||||
use VDM\Joomla\GetBible\Service\Model;
|
||||
use VDM\Joomla\GetBible\Service\Database;
|
||||
use VDM\Joomla\Interfaces\FactoryInterface;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\Api;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\Utilities;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\Watcher;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\App;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\Model;
|
||||
use TrueChristianChurch\Joomla\GetBible\Service\Database;
|
||||
use TrueChristianChurch\Joomla\Interfaces\FactoryInterface;
|
||||
|
||||
|
||||
/**
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user