2017-02-01 13:17:04 +00:00
< ? php
2018-05-18 06:28:27 +00:00
/**
* @ package Joomla . Component . Builder
*
* @ created 30 th April , 2015
* @ author Llewellyn van der Merwe < http :// www . joomlacomponentbuilder . com >
* @ github Joomla Component Builder < https :// github . com / vdm - io / Joomla - Component - Builder >
* @ copyright Copyright ( C ) 2015 - 2018 Vast Development Method . All rights reserved .
* @ license GNU General Public License version 2 or later ; see LICENSE . txt
*/
2017-02-01 13:17:04 +00:00
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
// import the list field type
jimport ( 'joomla.form.helper' );
JFormHelper :: loadFieldClass ( 'list' );
/**
* Component Form Field class for the Componentbuilder component
*/
class JFormFieldComponent extends JFormFieldList
{
/**
* The component field type .
*
* @ var string
*/
2018-03-30 04:41:33 +00:00
public $type = 'component' ;
2017-02-01 13:17:04 +00:00
/**
* Override to add new button
*
* @ return string The field input markup .
*
* @ since 3.2
*/
protected function getInput ()
{
// see if we should add buttons
$setButton = $this -> getAttribute ( 'button' );
// get html
$html = parent :: getInput ();
// if true set button
if ( $setButton === 'true' )
{
$button = array ();
$script = array ();
$buttonName = $this -> getAttribute ( 'name' );
// get the input from url
$app = JFactory :: getApplication ();
$jinput = $app -> input ;
// get the view name & id
$values = $jinput -> getArray ( array (
'id' => 'int' ,
2018-08-19 20:15:43 +00:00
'view' => 'word'
2017-02-01 13:17:04 +00:00
));
// check if new item
$ref = '' ;
$refJ = '' ;
if ( ! is_null ( $values [ 'id' ]) && strlen ( $values [ 'view' ]))
{
2018-08-19 20:15:43 +00:00
// only load referral if not new item.
2017-02-01 13:17:04 +00:00
$ref = '&ref=' . $values [ 'view' ] . '&refid=' . $values [ 'id' ];
$refJ = '&ref=' . $values [ 'view' ] . '&refid=' . $values [ 'id' ];
2018-08-18 12:09:17 +00:00
// get the return value.
$_uri = ( string ) JUri :: getInstance ();
$_return = urlencode ( base64_encode ( $_uri ));
// load return value.
$ref .= '&return=' . $_return ;
$refJ .= '&return=' . $_return ;
2017-02-01 13:17:04 +00:00
}
$user = JFactory :: getUser ();
2017-02-16 14:02:23 +00:00
// only add if user allowed to create joomla_component
2017-10-14 18:07:23 +00:00
if ( $user -> authorise ( 'joomla_component.create' , 'com_componentbuilder' ) && $app -> isAdmin ()) // TODO for now only in admin area.
2017-02-01 13:17:04 +00:00
{
// build Create button
$buttonNamee = trim ( $buttonName );
$buttonNamee = preg_replace ( '/_+/' , ' ' , $buttonNamee );
$buttonNamee = preg_replace ( '/\s+/' , ' ' , $buttonNamee );
$buttonNamee = preg_replace ( " /[^A-Za-z ]/ " , '' , $buttonNamee );
$buttonNamee = ucfirst ( strtolower ( $buttonNamee ));
$button [] = '<a id="' . $buttonName . 'Create" class="btn btn-small btn-success hasTooltip" title="' . JText :: sprintf ( 'COM_COMPONENTBUILDER_CREATE_NEW_S' , $buttonNamee ) . ' " style= " border - radius : 0 px 4 px 4 px 0 px ; padding : 4 px 4 px 4 px 7 px ; "
2017-02-16 14:02:23 +00:00
href = " index.php?option=com_componentbuilder&view=joomla_component&layout=edit'. $ref .' " >
2017-02-01 13:17:04 +00:00
< span class = " icon-new icon-white " ></ span ></ a > ' ;
}
2017-02-16 14:02:23 +00:00
// only add if user allowed to edit joomla_component
2017-10-14 18:07:23 +00:00
if (( $buttonName === 'joomla_component' || $buttonName === 'joomla_components' ) && $user -> authorise ( 'joomla_component.edit' , 'com_componentbuilder' ) && $app -> isAdmin ()) // TODO for now only in admin area.
2017-02-01 13:17:04 +00:00
{
// build edit button
$buttonNamee = trim ( $buttonName );
$buttonNamee = preg_replace ( '/_+/' , ' ' , $buttonNamee );
$buttonNamee = preg_replace ( '/\s+/' , ' ' , $buttonNamee );
$buttonNamee = preg_replace ( " /[^A-Za-z ]/ " , '' , $buttonNamee );
$buttonNamee = ucfirst ( strtolower ( $buttonNamee ));
$button [] = '<a id="' . $buttonName . 'Edit" class="btn btn-small hasTooltip" title="' . JText :: sprintf ( 'COM_COMPONENTBUILDER_EDIT_S' , $buttonNamee ) . ' " style= " display : none ; padding : 4 px 4 px 4 px 7 px ; " href= " #" >
< span class = " icon-edit " ></ span ></ a > ' ;
// build script
$script [] = "
jQuery ( document ) . ready ( function () {
jQuery ( '#adminForm' ) . on ( 'change' , '#jform_".$buttonName."' , function ( e ) {
e . preventDefault ();
var " . $buttonName . " Value = jQuery ( '#jform_".$buttonName."' ) . val ();
" . $buttonName . " Button ( " . $buttonName . " Value );
});
var " . $buttonName . " Value = jQuery ( '#jform_".$buttonName."' ) . val ();
" . $buttonName . " Button ( " . $buttonName . " Value );
});
function " . $buttonName . " Button ( value ) {
if ( value > 0 ) {
// hide the create button
jQuery ( '#".$buttonName."Create' ) . hide ();
// show edit button
jQuery ( '#".$buttonName."Edit' ) . show ();
2017-02-16 14:02:23 +00:00
var url = 'index.php?option=com_componentbuilder&view=joomla_components&task=joomla_component.edit&id=' + value + '".$refJ."' ;
2017-02-01 13:17:04 +00:00
jQuery ( '#".$buttonName."Edit' ) . attr ( 'href' , url );
} else {
// show the create button
jQuery ( '#".$buttonName."Create' ) . show ();
// hide edit button
jQuery ( '#".$buttonName."Edit' ) . hide ();
}
} " ;
}
2017-02-16 14:02:23 +00:00
// check if button was created for joomla_component field.
2017-02-01 13:17:04 +00:00
if ( is_array ( $button ) && count ( $button ) > 0 )
{
// Load the needed script.
$document = JFactory :: getDocument ();
$document -> addScriptDeclaration ( implode ( ' ' , $script ));
// return the button attached to input field.
return '<div class="input-append">' . $html . implode ( '' , $button ) . '</div>' ;
}
}
return $html ;
}
/**
* Method to get a list of options for a list input .
*
2018-09-25 20:02:48 +00:00
* @ return array An array of JHtml options .
2017-02-01 13:17:04 +00:00
*/
2018-09-25 20:02:48 +00:00
protected function getOptions ()
2017-02-01 13:17:04 +00:00
{
2018-04-23 00:42:41 +00:00
$db = JFactory :: getDBO ();
$query = $db -> getQuery ( true );
$query -> select ( $db -> quoteName ( array ( 'a.id' , 'a.system_name' ), array ( 'id' , 'component_system_name' )));
$query -> from ( $db -> quoteName ( '#__componentbuilder_joomla_component' , 'a' ));
$query -> where ( $db -> quoteName ( 'a.published' ) . ' >= 1' );
$query -> order ( 'a.system_name ASC' );
$db -> setQuery (( string ) $query );
$items = $db -> loadObjectList ();
$options = array ();
if ( $items )
{
$options [] = JHtml :: _ ( 'select.option' , '' , 'Select an option' );
foreach ( $items as $item )
{
$options [] = JHtml :: _ ( 'select.option' , $item -> id , $item -> component_system_name );
}
}
return $options ;
2017-02-01 13:17:04 +00:00
}
}