Made a little tweak to placeholders, to remove uneeded space.

This commit is contained in:
2018-09-11 22:28:17 +02:00
parent 5962b557c8
commit 45c255485f
307 changed files with 588 additions and 588 deletions

View File

@@ -25,7 +25,7 @@ abstract class ComponentbuilderHelper
{
// the Session keeps track of all data related to the current session of this user
self::loadSession();
}
}
/**
* Locked Libraries (we can not have these change)
@@ -4439,7 +4439,7 @@ abstract class ComponentbuilderHelper
return $classes;
}
return false;
}
}
/**
* Get a variable

View File

@@ -139,7 +139,7 @@ class ComponentbuilderModelApi extends JModelItem
}
return $this->_item[$pk];
}
}
/**
* Get the uikit needed components
@@ -154,7 +154,7 @@ class ComponentbuilderModelApi extends JModelItem
return $this->uikitComp;
}
return false;
}
}
public $messages = array();
public $model;
@@ -222,5 +222,5 @@ class ComponentbuilderModelApi extends JModelItem
// set that the component was not found
$this->messages[] = JText::_('COM_COMPONENTBUILDER_COMPONENT_WAS_NOT_FOUND');
return false;
} ###SITE_CUSTOM_GET_FORM_METHOD###
}
}

View File

@@ -10,10 +10,10 @@
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
defined('_JEXEC') or die('Restricted access');
?>
<div class="uk-alert uk-alert-danger" data-uk-alert>
<h2><?php echo JText::_('COM_COMPONENTBUILDER_ERROR'); ?></h2>
</div>
</div>

View File

@@ -57,7 +57,7 @@ class ComponentbuilderViewApi extends JViewLegacy
// Load the header checker class.
require_once( JPATH_COMPONENT_SITE.'/helpers/headercheck.php' );
// Initialize the header checker.
$HeaderCheck = new componentbuilderHeaderCheck;
$HeaderCheck = new componentbuilderHeaderCheck;
// Load uikit options.
$uikit = $this->params->get('uikit_load');
@@ -75,9 +75,9 @@ class ComponentbuilderViewApi extends JViewLegacy
if ((!$HeaderCheck->js_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
{
$this->document->addScript(JURI::root(true) .'/media/com_componentbuilder/uikit-v2/js/uikit'.$size.'.js', (ComponentbuilderHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
}
}
// add the document default css file
$this->document->addStyleSheet(JURI::root(true) .'/components/com_componentbuilder/assets/css/api.css', (ComponentbuilderHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
$this->document->addStyleSheet(JURI::root(true) .'/components/com_componentbuilder/assets/css/api.css', (ComponentbuilderHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
}
/**