Added lots more demo data on Github to help demonstrate the ease of use. Adding feature to insert custom scripting during install. Adding easy issue tracking, and member notice board. Many bug fixes, to the compiler and general improvements.

This commit is contained in:
2016-10-24 00:48:26 +02:00
parent ecb3ab5af9
commit 33f3bb5652
419 changed files with 9574 additions and 5291 deletions

View File

@ -10,13 +10,12 @@
|_|
/-------------------------------------------------------------------------------------------------------------------------------/
@version 2.1.21
@build 11th September, 2016
@version 2.2.0
@build 23rd October, 2016
@created 30th April, 2015
@package Component Builder
@subpackage admin_view.php
@author Llewellyn van der Merwe <https://www.vdm.io/joomla-component-builder>
@my wife Roline van der Merwe <http://www.vdm.io/>
@author Llewellyn van der Merwe <https://www.vdm.io/joomla-component-builder>
@copyright Copyright (C) 2015. All Rights Reserved
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
@ -286,7 +285,7 @@ class ComponentbuilderModelAdmin_view extends JModelAdmin
*
* @return mixed An array of data items on success, false on failure.
*/
public function getVxkfields()
public function getVxpfields()
{
// Get the user object.
$user = JFactory::getUser();
@ -355,13 +354,13 @@ class ComponentbuilderModelAdmin_view extends JModelAdmin
foreach ($items as $nr => &$item)
{
// convert datatype
$item->datatype = $this->selectionTranslationVxkfields($item->datatype, 'datatype');
$item->datatype = $this->selectionTranslationVxpfields($item->datatype, 'datatype');
// convert indexes
$item->indexes = $this->selectionTranslationVxkfields($item->indexes, 'indexes');
$item->indexes = $this->selectionTranslationVxpfields($item->indexes, 'indexes');
// convert null_switch
$item->null_switch = $this->selectionTranslationVxkfields($item->null_switch, 'null_switch');
$item->null_switch = $this->selectionTranslationVxpfields($item->null_switch, 'null_switch');
// convert store
$item->store = $this->selectionTranslationVxkfields($item->store, 'store');
$item->store = $this->selectionTranslationVxpfields($item->store, 'store');
}
}
@ -396,7 +395,7 @@ class ComponentbuilderModelAdmin_view extends JModelAdmin
*
* @return translatable string
*/
public function selectionTranslationVxkfields($value,$name)
public function selectionTranslationVxpfields($value,$name)
{
// Array of datatype language strings
if ($name == 'datatype')