Compare commits

...

12 Commits
5.x ... 4.x

Author SHA1 Message Date
f0e145b2df
Release of v4.0.15-alpha4
Improve the PHP environment setup validation. Add option to pass shared session via tag share.
2024-07-29 18:16:23 +02:00
5a7db599bb
Release of v4.0.15-alpha3
Fix update error of undefined folder method (exists).
2024-07-15 17:52:27 +02:00
e3ad08618a
Release of v4.0.15-alpha2
Fix display error with correct component namespace update form JCB.
2024-07-15 17:39:37 +02:00
0ed2070f60
Release of v4.0.15-alpha1
Fix install issue with missing method removeFolder.
2024-07-15 17:16:29 +02:00
b4288db37b
Release of v4.0.14
Refactored the API classes. Add table schema checker.
2024-07-15 10:00:11 +02:00
5e4c90db11
Release of v4.0.13
Add back to Bible button to Open AI page.
2024-04-29 19:08:20 +02:00
369bbf3772
Release of v4.0.12
Add PHP check on installation. Add Database check on installation.
2024-04-27 22:53:52 +02:00
8569c41576
Release of v4.0.11
Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes.
2024-04-06 15:24:14 +02:00
11910647cf
Release of v4.0.10
Update getBible loader to version 3.1.0.
2024-03-20 10:42:55 +02:00
cf73a3c71c
Stable release of v4.0.9
Correct the url encoding to json_encode for none Latin languages. Fix type cast validation on search page.
2024-03-08 10:07:33 +02:00
239d3a0040
Stable release of v4.0.8
Restore router functions.
2024-03-07 18:29:45 +02:00
dfaab46ef2
Stable release of v4.0.7
Fix missing token variable in ajax call.
2024-03-07 18:23:34 +02:00
596 changed files with 12273 additions and 2095 deletions

View File

@ -1,37 +1,76 @@
# v5.0.7
# v4.0.15-alpha4
- Improve the PHP environment setup validation
- Add option to pass shared session via tag share
# v4.0.15-alpha
- Refactored the API classes
- Add table schema checker
- Fix install issue with missing method removeFolder
- Fix display error with correct component namespace update form JCB
- Fix update error of undefined folder method (exists)
# v4.0.13
- Add back to Bible button to Open AI page.
# v4.0.12
- Add PHP check on installation.
- Add Database check on installation.
# v4.0.11
- Moved all library classes away from default Namespace and Folder path to avoid collusion on outdated classes.
# v4.0.10
- Update getBible loader to version 3.1.0
# v4.0.9
- Correct the url encoding to json_encode for none Latin languages.
- Fix type cast validation on search page.
# v4.0.8
- Restore router functions.
# v4.0.7
- Fix missing token variable in ajax call
# v5.0.6
# v4.0.6
- Fix an Ajax input typo.
# v5.0.5
# v4.0.5
- Add option to target MySQL 8+ with the search regex.
# v5.0.4
# v4.0.4
- Fix the spl_autoload_register function to load all the needed namespace. That was remove in the last update (sorry).
# v5.0.3
# v4.0.3
- Fix canDelete to correctly use published.
- Add default 1 to version field to make sure the versioning feature works as expected.
# v5.0.2
# v4.0.2
- Fix Daily Light Deprecated code.
- Fix Daily Scripture Deprecated code.
# v5.0.1
# v4.0.1
- First stable back-end and front-end release towards Joomla 4 and 5
- First stable back-end and front-end release towards Joomla 4
# v5.0.0
# v4.0.0
- Moved to Joomla 4 and 5
- Moved to Joomla 4
# v3.0.5
# v3.1.1
- Fix missing token variable in ajax call
- Add back to Bible button to Open AI page.

View File

@ -0,0 +1,64 @@
<?php
/*----------------------------------------------------------------------------------| io.vdm.dev |----/
Vast Development Method
/-------------------------------------------------------------------------------------------------------/
@package getBible.net
@created 3rd December, 2015
@author Llewellyn van der Merwe <https://getbible.net>
@git Get Bible <https://git.vdm.dev/getBible>
@github Get Bible <https://github.com/getBible>
@support Get Bible <https://git.vdm.dev/getBible/support>
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die;
// register additional namespace
spl_autoload_register(function ($class) {
// project-specific base directories and namespace prefix
$search = [
'libraries/vendor_getbible/TrueChristianBible.Joomla.Openai' => 'TrueChristianBible\\Joomla\\Openai',
'libraries/vendor_getbible/TrueChristianBible.Joomla.Gitea' => 'TrueChristianBible\\Joomla\\Gitea',
'libraries/vendor_getbible/TrueChristianBible.Joomla' => 'TrueChristianBible\\Joomla'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = __DIR__ . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});

View File

@ -20,12 +20,13 @@ use Joomla\CMS\Language\Text;
use Joomla\CMS\Filesystem\File;
use Joomla\CMS\Installer\InstallerAdapter;
use Joomla\CMS\Installer\InstallerScriptInterface;
use Joomla\CMS\Application\CMSApplication;
use Joomla\CMS\Log\Log;
use Joomla\CMS\Version;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\Filesystem\Folder;
use Joomla\Database\DatabaseInterface;
use TrueChristianBible\Joomla\GetBible\PHPConfigurationChecker;
use TrueChristianBible\Joomla\GetBible\Table\SchemaChecker;
// No direct access to this file
defined('_JEXEC') or die;
@ -40,10 +41,9 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
/**
* The CMS Application.
*
* @var CMSApplication
* @since 4.4.2
*/
protected CMSApplication $app;
protected $app;
/**
* The database class.
@ -165,7 +165,6 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
* @param InstallerAdapter $adapter The adapter calling this method
*
* @return boolean True on success
*
* @since 4.2.0
*/
public function install(InstallerAdapter $adapter): bool {return true;}
@ -187,7 +186,6 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
* @param InstallerAdapter $adapter The adapter calling this method
*
* @return boolean True on success
*
* @since 4.2.0
*/
public function uninstall(InstallerAdapter $adapter): bool
@ -274,7 +272,6 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
* @param InstallerAdapter $adapter The adapter calling this method
*
* @return boolean True on success
*
* @since 4.2.0
*/
public function preflight(string $type, InstallerAdapter $adapter): bool
@ -302,11 +299,37 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// do any updates needed
if ($type === 'update')
{
// Check that the PHP configurations are sufficient
if ($this->classExists(PHPConfigurationChecker::class))
{
(new PHPConfigurationChecker())->run();
}
// all things to clear out
$removeFolders = [];
$removeFolders[] = JPATH_LIBRARIES . '/jcb_powers/VDM.Joomla.GetBible';
$removeFolders[] = JPATH_LIBRARIES . '/vendor_getbible/TrueChristianChurch.Joomla';
$removeFolders[] = JPATH_LIBRARIES . '/vendor_getbible/TrueChristianChurch.Joomla.GetBible';
$removeFolders[] = JPATH_LIBRARIES . '/vendor_getbible/TrueChristianChurch.Joomla.Gitea';
$removeFolders[] = JPATH_LIBRARIES . '/vendor_getbible/TrueChristianChurch.Joomla.Openai';
$removeFolders[] = JPATH_LIBRARIES . '/vendor_getbible/TrueChristianBible.Joomla/src/GetBible';
foreach ($removeFolders as $folder)
{
$this->removeFolder($folder);
}
}
// do any install needed
if ($type === 'install')
{
// Check that the PHP configurations are sufficient
if ($this->classExists(PHPConfigurationChecker::class))
{
(new PHPConfigurationChecker())->run();
}
}
return true;
@ -319,7 +342,6 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
* @param InstallerAdapter $adapter The adapter calling this method
*
* @return boolean True on success
*
* @since 4.2.0
*/
public function postflight(string $type, InstallerAdapter $adapter): bool
@ -338,7 +360,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.note',
// table
'{"special": {"dbtable": "#__getbible_note","key": "id","type": "NoteTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_note","key": "id","type": "NoteTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -355,7 +377,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.tagged_verse',
// table
'{"special": {"dbtable": "#__getbible_tagged_verse","key": "id","type": "Tagged_verseTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_tagged_verse","key": "id","type": "Tagged_verseTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -372,7 +394,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.prompt',
// table
'{"special": {"dbtable": "#__getbible_prompt","key": "id","type": "PromptTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_prompt","key": "id","type": "PromptTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -389,7 +411,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.open_ai_response',
// table
'{"special": {"dbtable": "#__getbible_open_ai_response","key": "id","type": "Open_ai_responseTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_open_ai_response","key": "id","type": "Open_ai_responseTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -406,7 +428,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.open_ai_message',
// table
'{"special": {"dbtable": "#__getbible_open_ai_message","key": "id","type": "Open_ai_messageTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_open_ai_message","key": "id","type": "Open_ai_messageTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -423,7 +445,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.tag',
// table
'{"special": {"dbtable": "#__getbible_tag","key": "id","type": "TagTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_tag","key": "id","type": "TagTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -443,6 +465,13 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
);
// Check that the database is up-to date
if ($this->classExists(SchemaChecker::class))
{
(new SchemaChecker())->run();
}
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://getbible.net" title="Get Bible">
<img src="components/com_getbible/assets/images/vdm-component.jpg"/>
</a></div>';
@ -654,7 +683,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.note',
// table
'{"special": {"dbtable": "#__getbible_note","key": "id","type": "NoteTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_note","key": "id","type": "NoteTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -671,7 +700,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.tagged_verse',
// table
'{"special": {"dbtable": "#__getbible_tagged_verse","key": "id","type": "Tagged_verseTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_tagged_verse","key": "id","type": "Tagged_verseTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -688,7 +717,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.prompt',
// table
'{"special": {"dbtable": "#__getbible_prompt","key": "id","type": "PromptTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_prompt","key": "id","type": "PromptTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -705,7 +734,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.open_ai_response',
// table
'{"special": {"dbtable": "#__getbible_open_ai_response","key": "id","type": "Open_ai_responseTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_open_ai_response","key": "id","type": "Open_ai_responseTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -722,7 +751,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.open_ai_message',
// table
'{"special": {"dbtable": "#__getbible_open_ai_message","key": "id","type": "Open_ai_messageTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_open_ai_message","key": "id","type": "Open_ai_messageTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -739,7 +768,7 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// typeAlias
'com_getbible.tag',
// table
'{"special": {"dbtable": "#__getbible_tag","key": "id","type": "TagTable","prefix": "TrueChristianChurch\Component\Getbible\Administrator\Table"}}',
'{"special": {"dbtable": "#__getbible_tag","key": "id","type": "TagTable","prefix": "TrueChristianBible\Component\GetBible\Administrator\Table"}}',
// rules
'',
// fieldMappings
@ -752,10 +781,17 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
// Check that the database is up-to date
if ($this->classExists(SchemaChecker::class))
{
(new SchemaChecker())->run();
}
echo '<div style="background-color: #fff;" class="alert alert-info"><a target="_blank" href="https://getbible.net" title="Get Bible">
<img src="components/com_getbible/assets/images/vdm-component.jpg"/>
</a>
<h3>Upgrade to Version 5.0.7 Was Successful! Let us know if anything is not working as expected.</h3></div>';
<h3>Upgrade to Version 4.0.15-alpha4 Was Successful! Let us know if anything is not working as expected.</h3></div>';
// Add/Update component in the action logs extensions table.
$this->setActionLogsExtensions();
@ -962,11 +998,84 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
return true;
}
/**
* Remove folders with files (with ignore options)
*
* @param string $dir The path to the folder to remove.
* @param array|null $ignore The folders and files to ignore and not remove.
*
* @return bool True if all specified files/folders are removed, false otherwise.
* @since 3.2.2
*/
protected function removeFolder(string $dir, ?array $ignore = null): bool
{
if (!is_dir($dir))
{
return false;
}
$it = new \RecursiveDirectoryIterator($dir, \FilesystemIterator::SKIP_DOTS);
$it = new \RecursiveIteratorIterator($it, \RecursiveIteratorIterator::CHILD_FIRST);
// Remove trailing slash
$dir = rtrim($dir, '/');
foreach ($it as $file)
{
$filePath = $file->getPathname();
$relativePath = str_replace($dir . '/', '', $filePath);
if ($ignore !== null && in_array($relativePath, $ignore, true))
{
continue;
}
if ($file->isDir())
{
Folder::delete($filePath);
}
else
{
File::delete($filePath);
}
}
// Delete the root folder if there are no ignored files/folders left
if ($ignore === null || $this->isDirEmpty($dir, $ignore))
{
return Folder::delete($dir);
}
return true;
}
/**
* Check if a directory is empty considering ignored files/folders.
*
* @param string $dir The path to the folder to check.
* @param array $ignore The folders and files to ignore.
*
* @return bool True if the directory is empty or contains only ignored items, false otherwise.
* @since 3.2.1
*/
protected function isDirEmpty(string $dir, array $ignore): bool
{
$it = new \RecursiveDirectoryIterator($dir, \FilesystemIterator::SKIP_DOTS);
foreach ($it as $file)
{
$relativePath = str_replace($dir . '/', '', $file->getPathname());
if (!in_array($relativePath, $ignore, true))
{
return false;
}
}
return true;
}
/**
* Remove the files and folders in the given array from
*
* @return void
*
* @since 3.6
*/
protected function removeFiles()
@ -998,7 +1107,6 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
* Moves the CLI scripts into the CLI folder in the CMS
*
* @return void
*
* @since 3.6
*/
protected function moveCliFiles()
@ -1780,6 +1888,44 @@ class Com_GetbibleInstallerScript implements InstallerScriptInterface
}
}
/**
* Ensures that a class in the namespace is available.
* If the class is not already loaded, it attempts to load it via the specified autoloader.
*
* @param string $className The fully qualified name of the class to check.
*
* @return bool True if the class exists or was successfully loaded, false otherwise.
* @since 4.0.1
*/
protected function classExists(string $className): bool
{
if (class_exists($className, true))
{
return true;
}
// Autoloaders to check
$autoloaders = [
__DIR__ . '/GetbibleInstallerPowerloader.php',
JPATH_ADMINISTRATOR . '/components/com_getbible/src/Helper/PowerloaderHelper.php'
];
foreach ($autoloaders as $autoloader)
{
if (file_exists($autoloader))
{
require_once $autoloader;
if (class_exists($className, true))
{
return true;
}
}
}
return false;
}
/**
* Method to move folders into place.
*

View File

@ -1,4 +1,4 @@
# Get Bible (5.0.7)
# Get Bible (4.0.15-alpha4)
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/5.0/admin/assets/images/vdm-component.jpg "GetBible")
@ -18,38 +18,38 @@ 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*: 4th March, 2024
+ *Version*: 5.0.7
+ *Last Build*: 29th July, 2024
+ *Version*: 4.0.15-alpha4
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
## Build Time
**579 Hours** or **72 Eight Hour Days** (actual time the author saved -
**664 Hours** or **83 Eight Hour Days** (actual time the author saved -
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*: **207531**
+ *File count*: **1725**
+ *Folder count*: **189**
+ *Line count*: **237927**
+ *File count*: **1921**
+ *Folder count*: **180**
**382 Hours** or **48 Eight Hour Days** (the actual time the author spent)
**438 Hours** or **55 Eight Hour Days** (the actual time the author spent)
> (with the following break down:
> **debugging @145hours** = codingtime / 4;
> **planning @83hours** = codingtime / 7;
> **mapping @58hours** = codingtime / 10;
> **office @97hours** = codingtime / 6;)
> **debugging @166hours** = codingtime / 4;
> **planning @95hours** = codingtime / 7;
> **mapping @66hours** = codingtime / 10;
> **office @111hours** = codingtime / 6;)
**961 Hours** or **120 Eight Hour Days**
**1102 Hours** or **138 Eight Hour Days**
(a total of the realistic time frame for this project)
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
> with the normal everyday realities at the office, that includes the component planning, mapping & debugging.)
Project duration: **24 weeks** or **5 months**
Project duration: **27.6 weeks** or **5.8 months**
> This **component** was build with a Joomla [Automated Component Builder](https://www.joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io)

View File

@ -1,4 +1,4 @@
# Get Bible (5.0.7)
# Get Bible (4.0.15-alpha4)
![Get Bible image](https://git.vdm.dev/getBible/joomla-component/raw/branch/5.0/admin/assets/images/vdm-component.jpg "GetBible")
@ -18,38 +18,38 @@ 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*: 4th March, 2024
+ *Version*: 5.0.7
+ *Last Build*: 29th July, 2024
+ *Version*: 4.0.15-alpha4
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
## Build Time
**579 Hours** or **72 Eight Hour Days** (actual time the author saved -
**664 Hours** or **83 Eight Hour Days** (actual time the author saved -
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*: **207531**
+ *File count*: **1725**
+ *Folder count*: **189**
+ *Line count*: **237927**
+ *File count*: **1921**
+ *Folder count*: **180**
**382 Hours** or **48 Eight Hour Days** (the actual time the author spent)
**438 Hours** or **55 Eight Hour Days** (the actual time the author spent)
> (with the following break down:
> **debugging @145hours** = codingtime / 4;
> **planning @83hours** = codingtime / 7;
> **mapping @58hours** = codingtime / 10;
> **office @97hours** = codingtime / 6;)
> **debugging @166hours** = codingtime / 4;
> **planning @95hours** = codingtime / 7;
> **mapping @66hours** = codingtime / 10;
> **office @111hours** = codingtime / 6;)
**961 Hours** or **120 Eight Hour Days**
**1102 Hours** or **138 Eight Hour Days**
(a total of the realistic time frame for this project)
> (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**,
> with the normal everyday realities at the office, that includes the component planning, mapping & debugging.)
Project duration: **24 weeks** or **5 months**
Project duration: **27.6 weeks** or **5.8 months**
> This **component** was build with a Joomla [Automated Component Builder](https://www.joomlacomponentbuilder.com).
> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io)

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<config>
<fieldset
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\Getbible\Administrator\Field"
name="global_config"
label="COM_GETBIBLE_CONFIG_GLOBAL_LABEL"
description="COM_GETBIBLE_CONFIG_GLOBAL_DESC">

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<fields name="filter">
<field

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<form
addruleprefix="TrueChristianChurch\Component\Getbible\Administrator\Rule"
addfieldprefix="TrueChristianChurch\Component\Getbible\Administrator\Field"
addruleprefix="TrueChristianBible\Component\GetBible\Administrator\Rule"
addfieldprefix="TrueChristianBible\Component\GetBible\Administrator\Field"
>
<config>
<inlinehelp button="show"/>

View File

@ -8,7 +8,6 @@ COM_GETBIBLE_ARCHIVED="Archived"
COM_GETBIBLE_ARE_YOU_SURE_YOU_WANT_TO_DELETE_CONFIRMING_WILL_PERMANENTLY_DELETE_THE_SELECTED_ITEMS="Are you sure you want to delete? Confirming will permanently delete the selected item(s)!"
COM_GETBIBLE_AUTHOR="Author"
COM_GETBIBLE_BACK="Back"
COM_GETBIBLE_BETA_RELEASE="Beta Release"
COM_GETBIBLE_BOOK="Book"
COM_GETBIBLE_BOOKS="Books"
COM_GETBIBLE_BOOKS_ACCESS="Books Access"
@ -1211,6 +1210,7 @@ COM_GETBIBLE_PASSWORD_TO_SHORT_USE_A_LONGER_PASSWORD="Password to short, use a l
COM_GETBIBLE_PASSWORD_VERSION_DESC="A count of the number of times this Password has been revised."
COM_GETBIBLE_PASSWORD_VERSION_LABEL="Version"
COM_GETBIBLE_PLEASE_CHECK_AGAIN_LATER="Please check again later"
COM_GETBIBLE_PRE_RELEASE="Pre Release"
COM_GETBIBLE_PROMPT="Prompt"
COM_GETBIBLE_PROMPTS="Prompts"
COM_GETBIBLE_PROMPTS_ACCESS="Prompts Access"
@ -1685,7 +1685,7 @@ COM_GETBIBLE_THE_TAG_WAS_SUCCESSFULLY_REACTIVATED="The tag was successfully reac
COM_GETBIBLE_THE_TAG_WAS_SUCCESSFULLY_REMOVED_FROM_THE_VERSE="The tag was successfully removed from the verse."
COM_GETBIBLE_THE_TAG_WAS_SUCCESSFULLY_UPDATED="The tag was successfully updated."
COM_GETBIBLE_THE_VERSE_WAS_SUCCESSFULLY_TAGGED="The verse was successfully tagged."
COM_GETBIBLE_THE_WIKI_CAN_ONLY_BE_LOADED_WHEN_YOUR_JCB_SYSTEM_HAS_INTERNET_CONNECTION="The wiki can only be loaded when your JCB system has internet connection."
COM_GETBIBLE_THE_WIKI_CAN_ONLY_BE_LOADED_WHEN_YOUR_GETBIBLE_SYSTEM_HAS_INTERNET_CONNECTION="The wiki can only be loaded when your getBible system has internet connection."
COM_GETBIBLE_THE_WIKI_IS_LOADING="The wiki is loading"
COM_GETBIBLE_THIS_IS_A_GLOBAL_TAG_SET_BY_US_AT_BSB_FOR_YOUR_CONVENIENCE_WE_HOLD_THE_PRIVILEGE_TO_MODIFY_THESE_TAGS_IF_YOU_BELIEVE_ITS_SET_IN_ERROR_KINDLY_INFORM_US="This is a global tag, set by us at <b>%s</b> for your convenience. We hold the privilege to modify these tags. If you believe it's set in error, kindly inform us."
COM_GETBIBLE_THIS_TAG_COULD_NOT_BE_REMOVED="This tag could not be removed."

View File

@ -18,9 +18,9 @@
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\StringHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\StringHelper;
use TrueChristianBible\Joomla\Utilities\ArrayHelper;
// No direct access to this file
defined('_JEXEC') or die;

View File

@ -18,9 +18,9 @@
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\StringHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\StringHelper;
use TrueChristianBible\Joomla\Utilities\ArrayHelper;
// No direct access to this file
defined('_JEXEC') or die;

View File

@ -18,9 +18,9 @@
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\StringHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\StringHelper;
use TrueChristianBible\Joomla\Utilities\ArrayHelper;
// No direct access to this file
defined('_JEXEC') or die;

View File

@ -18,9 +18,9 @@
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\StringHelper;
use VDM\Joomla\Utilities\ArrayHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\StringHelper;
use TrueChristianBible\Joomla\Utilities\ArrayHelper;
// No direct access to this file
defined('_JEXEC') or die;

View File

@ -21,8 +21,8 @@ use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\Component\Helper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\Component\Helper;
// No direct access to this file
defined('JPATH_BASE') or die;

View File

@ -21,8 +21,8 @@ use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\Component\Helper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\Component\Helper;
// No direct access to this file
defined('JPATH_BASE') or die;

View File

@ -21,7 +21,7 @@ use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
defined('JPATH_BASE') or die;

View File

@ -15,53 +15,12 @@
/------------------------------------------------------------------------------------------------------*/
// register additional namespace
\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'
];
// Start the search and load if found
$found = false;
$found_base_dir = "";
$found_len = 0;
foreach ($search as $base_dir => $prefix)
// The power autoloader for this project (JPATH_ADMINISTRATOR) area.
$power_autoloader = JPATH_ADMINISTRATOR . '/components/com_getbible/src/Helper/PowerloaderHelper.php';
if (file_exists($power_autoloader))
{
// does the class use the namespace prefix?
$len = strlen($prefix);
if (strncmp($prefix, $class, $len) === 0)
{
// we have a match so load the values
$found = true;
$found_base_dir = $base_dir;
$found_len = $len;
// done here
break;
require_once $power_autoloader;
}
}
// check if we found a match
if (!$found)
{
// not found so move to the next registered autoloader
return;
}
// get the relative class name
$relative_class = substr($class, $found_len);
// replace the namespace prefix with the base directory, replace namespace
// separators with directory separators in the relative class name, append
// with .php
$file = JPATH_ROOT . '/' . $found_base_dir . '/src' . str_replace('\\', '/', $relative_class) . '.php';
// if the file exists, require it
if (file_exists($file))
{
require $file;
}
});
// (soon) use Joomla\CMS\Association\AssociationExtensionInterface;
use Joomla\CMS\Categories\CategoryFactoryInterface;
@ -74,8 +33,8 @@ use Joomla\CMS\Extension\Service\Provider\MVCFactory;
use Joomla\CMS\Extension\Service\Provider\RouterFactory;
use Joomla\CMS\HTML\Registry;
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
use TrueChristianChurch\Component\Getbible\Administrator\Extension\GetbibleComponent;
// (soon) use TrueChristianChurch\Component\Getbible\Administrator\Helper\AssociationsHelper;
use TrueChristianBible\Component\GetBible\Administrator\Extension\GetbibleComponent;
// (soon) use TrueChristianBible\Component\GetBible\Administrator\Helper\AssociationsHelper;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
@ -83,7 +42,7 @@ use Joomla\DI\ServiceProviderInterface;
\defined('_JEXEC') or die;
/**
* The TrueChristianChurch Getbible service provider.
* The TrueChristianBible Getbible service provider.
*
* @since 4.0.0
*/
@ -102,10 +61,10 @@ return new class () implements ServiceProviderInterface
{
// (soon) $container->set(AssociationExtensionInterface::class, new AssociationsHelper());
$container->registerServiceProvider(new CategoryFactory('\\TrueChristianChurch\\Component\\Getbible'));
$container->registerServiceProvider(new MVCFactory('\\TrueChristianChurch\\Component\\Getbible'));
$container->registerServiceProvider(new ComponentDispatcherFactory('\\TrueChristianChurch\\Component\\Getbible'));
$container->registerServiceProvider(new RouterFactory('\\TrueChristianChurch\\Component\\Getbible'));
$container->registerServiceProvider(new CategoryFactory('\\TrueChristianBible\\Component\\GetBible'));
$container->registerServiceProvider(new MVCFactory('\\TrueChristianBible\\Component\\GetBible'));
$container->registerServiceProvider(new ComponentDispatcherFactory('\\TrueChristianBible\\Component\\GetBible'));
$container->registerServiceProvider(new RouterFactory('\\TrueChristianBible\\Component\\GetBible'));
$container->set(
ComponentInterface::class,

View File

@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_linker` (
`name` VARCHAR(255) NOT NULL DEFAULT '',
`public_notes` TINYINT(1) NOT NULL DEFAULT 0,
`public_tagged_verses` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -42,7 +42,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_note` (
`linker` VARCHAR(36) NOT NULL DEFAULT '',
`note` TEXT NOT NULL,
`verse` INT(7) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -77,7 +77,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_tagged_verse` (
`linker` VARCHAR(36) NOT NULL DEFAULT '',
`tag` VARCHAR(36) NOT NULL DEFAULT '',
`verse` INT(7) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -106,7 +106,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_tagged_verse` (
CREATE TABLE IF NOT EXISTS `#__getbible_prompt` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`abbreviation` VARCHAR(100) NOT NULL DEFAULT '',
`abbreviation` VARCHAR(100) NOT NULL,
`ai_org_token_override` TINYINT(1) NOT NULL DEFAULT 0,
`cache_behaviour` TINYINT(1) NOT NULL DEFAULT 0,
`cache_capacity` INT(11) NOT NULL DEFAULT 0,
@ -131,7 +131,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_prompt` (
`token_override` TINYINT(1) NOT NULL DEFAULT 0,
`top_p` FLOAT(11) NOT NULL DEFAULT 0,
`top_p_override` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -160,30 +160,30 @@ CREATE TABLE IF NOT EXISTS `#__getbible_prompt` (
CREATE TABLE IF NOT EXISTS `#__getbible_open_ai_response` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`abbreviation` VARCHAR(100) NOT NULL DEFAULT '',
`abbreviation` VARCHAR(100) NOT NULL,
`book` INT(11) NOT NULL DEFAULT 0,
`chapter` INT(11) NOT NULL DEFAULT 0,
`completion_tokens` INT(11) NOT NULL DEFAULT 0,
`frequency_penalty` FLOAT(11) NOT NULL DEFAULT 0,
`language` VARCHAR(255) NOT NULL DEFAULT '',
`lcsh` VARCHAR(255) NOT NULL DEFAULT '',
`language` VARCHAR(255) NOT NULL,
`lcsh` VARCHAR(255) NOT NULL,
`max_tokens` INT(11) NOT NULL DEFAULT 0,
`model` VARCHAR(50) NOT NULL DEFAULT '',
`n` INT(7) NOT NULL DEFAULT 0,
`presence_penalty` FLOAT(11) NOT NULL DEFAULT 0,
`prompt` VARCHAR(36) NOT NULL DEFAULT '',
`prompt` VARCHAR(36) NOT NULL,
`prompt_tokens` INT(11) NOT NULL DEFAULT 0,
`response_created` VARCHAR(255) NOT NULL DEFAULT '',
`response_id` VARCHAR(255) NOT NULL DEFAULT '',
`response_model` VARCHAR(255) NOT NULL DEFAULT '',
`response_object` VARCHAR(255) NOT NULL DEFAULT '',
`response_created` VARCHAR(255) NOT NULL,
`response_id` VARCHAR(255) NOT NULL,
`response_model` VARCHAR(255) NOT NULL,
`response_object` VARCHAR(255) NOT NULL,
`selected_word` TEXT NOT NULL,
`temperature` FLOAT(11) NOT NULL DEFAULT 0,
`top_p` FLOAT(11) NOT NULL DEFAULT 0,
`total_tokens` INT(11) NOT NULL DEFAULT 0,
`verse` VARCHAR(255) NOT NULL DEFAULT '',
`word` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL,
`verse` VARCHAR(255) NOT NULL,
`word` VARCHAR(255) NOT NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -226,10 +226,10 @@ CREATE TABLE IF NOT EXISTS `#__getbible_open_ai_message` (
`index` INT(11) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`open_ai_response` VARCHAR(255) NOT NULL DEFAULT '',
`prompt` VARCHAR(36) NOT NULL DEFAULT '',
`prompt` VARCHAR(36) NOT NULL,
`role` VARCHAR(255) NOT NULL DEFAULT '',
`source` TINYINT(1) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -260,7 +260,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_password` (
`linker` VARCHAR(36) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`password` VARCHAR(100) NOT NULL DEFAULT '',
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -287,11 +287,11 @@ CREATE TABLE IF NOT EXISTS `#__getbible_tag` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`access` TINYINT(1) NOT NULL DEFAULT 0,
`description` TEXT NOT NULL,
`description` TEXT NULL,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`linker` VARCHAR(36) NOT NULL DEFAULT '',
`name` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -333,7 +333,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_translation` (
`language` VARCHAR(100) NOT NULL DEFAULT '',
`sha` VARCHAR(64) NOT NULL DEFAULT '',
`translation` VARCHAR(255) NOT NULL DEFAULT '',
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -361,7 +361,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_book` (
`name` VARCHAR(255) NOT NULL DEFAULT '',
`nr` INT(7) NOT NULL DEFAULT 0,
`sha` VARCHAR(64) NOT NULL DEFAULT '',
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -392,7 +392,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_chapter` (
`chapter` INT(7) NOT NULL DEFAULT 0,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`sha` VARCHAR(64) NOT NULL DEFAULT '',
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,
@ -425,7 +425,7 @@ CREATE TABLE IF NOT EXISTS `#__getbible_verse` (
`name` VARCHAR(255) NOT NULL DEFAULT '',
`text` TEXT NOT NULL,
`verse` INT(7) NOT NULL DEFAULT 0,
`params` text NULL,
`params` TEXT NULL,
`published` TINYINT(3) NOT NULL DEFAULT 1,
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
`modified_by` INT(10) unsigned NOT NULL DEFAULT 0,

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Application\CMSApplication;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class BookController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,9 +22,9 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
use VDM\Joomla\GetBible\Factory as GetBibleFactory;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
use TrueChristianBible\Joomla\GetBible\Factory as GetBibleFactory;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class ChapterController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\MVC\Controller\BaseController;
use Joomla\Utilities\ArrayHelper;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class LinkerController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class NoteController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class Open_ai_messageController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class Open_ai_responseController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class PasswordController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class PromptController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class TagController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class Tagged_verseController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class TranslationController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,9 +22,9 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use VDM\Joomla\GetBible\Factory as GetBibleFactory;
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Joomla\GetBible\Factory as GetBibleFactory;
use TrueChristianBible\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -83,7 +83,7 @@ class TranslationsController extends AdminController
{
// Redirect to the list screen with error.
$message = Text::_('COM_GETBIBLE_YOU_DO_NOT_HAVE_PERMISSION_TO_UPDATE_THE_BOOK_NAMES_PLEASE_CONTACT_YOUR_SYSTEM_ADMINISTRATOR_FOR_MORE_HELP');
$this->setRedirect(JRoute::_('index.php?option=com_getbible&view=translations', false), $message, 'error');
$this->setRedirect(Route::_('index.php?option=com_getbible&view=translations', false), $message, 'error');
return;
}
// Redirect to the list screen with error.

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -29,7 +29,7 @@ use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use Joomla\CMS\Uri\Uri;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -335,7 +335,7 @@ class VerseController extends FormController
* Function that allows child controller access to model data
* after the data has been saved.
*
* @param BaseDatabaseModel &$model The data model object.
* @param BaseDatabaseModel $model The data model object.
* @param array $validData The validated data.
*
* @return void

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Controller;
namespace TrueChristianBible\Component\GetBible\Administrator\Controller;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
@ -22,7 +22,7 @@ use Joomla\CMS\MVC\Controller\AdminController;
use Joomla\Utilities\ArrayHelper;
use Joomla\CMS\Router\Route;
use Joomla\CMS\Session\Session;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,7 +14,7 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Extension;
namespace TrueChristianBible\Component\GetBible\Administrator\Extension;
use Joomla\CMS\Association\AssociationServiceInterface;
use Joomla\CMS\Association\AssociationServiceTrait;
@ -32,7 +32,7 @@ use Joomla\CMS\Language\Text;
use Joomla\CMS\Tag\TagServiceInterface;
use Joomla\CMS\Tag\TagServiceTrait;
use Joomla\CMS\User\UserFactoryInterface;
// (soon) use TrueChristianChurch\Component\Getbible\Administrator\Service\HTML\AdministratorService;
// (soon) use TrueChristianBible\Component\GetBible\Administrator\Service\HTML\AdministratorService;
use Psr\Container\ContainerInterface;
// No direct access to this file

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;
@ -102,7 +102,7 @@ class LinkersField extends ListField
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; border-radius: 0px 4px 4px 0px;" href="#" >
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small btn-outline-success button-select hasTooltip" title="'.Text::sprintf('COM_GETBIBLE_EDIT_S', $button_label).'" style="display: none; border-radius: 0px 4px 4px 0px;" href="#" >
<span class="icon-edit"></span></a>';
// build script
$script[] = "

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

View File

@ -14,14 +14,14 @@
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
/------------------------------------------------------------------------------------------------------*/
namespace TrueChristianChurch\Component\Getbible\Administrator\Field;
namespace TrueChristianBible\Component\GetBible\Administrator\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Component\ComponentHelper;
use TrueChristianChurch\Component\Getbible\Administrator\Helper\GetbibleHelper;
use TrueChristianBible\Component\GetBible\Administrator\Helper\GetbibleHelper;
// No direct access to this file
\defined('_JEXEC') or die;

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