| Current Path : /home/bateauecpx/www/plugins/content/j2store/fields/ |
| Current File : /home/bateauecpx/www/plugins/content/j2store/fields/j2store.php |
<?php
/**
* @package J2Store
* @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org
* @license GNU GPL v3 or later
*/
/** ensure this file is being included by a parent file */
defined('_JEXEC') or die('Restricted access');
// import the list field type
jimport('joomla.form.helper');
class JFormFieldJ2Store extends JFormField
{
/**
* The field type.
*
* @var string
*/
protected $type = 'J2Store';
protected function getInput()
{
$app = JFactory::getApplication();
$id = $app->input->getInt('id');
if($app->isSite()){
$id = $app->input->getInt('a_id');
}
$productTable = F0FTable::getAnInstance('Product' ,'J2StoreTable');
$productTable->load(array('product_source'=>'com_content', 'product_source_id' =>$id));
$product_id = (isset($productTable->j2store_product_id)) ? $productTable->j2store_product_id : '';
$inputvars = array(
'task' =>'edit',
'render_toolbar' => '0',
'product_source_id'=>$id,
'id' =>$product_id,
'product_source'=>'com_content',
'product_source_view'=>'article',
'form_prefix'=>'jform[attribs][j2store]'
);
$input = new F0FInput($inputvars);
@ob_start();
F0FDispatcher::getTmpInstance('com_j2store', 'product', array('layout'=>'form', 'tmpl'=>'component', 'input' => $input))->dispatch();
$html = ob_get_contents();
ob_end_clean();
$html .= "<script>
(function($){
$(document).ready(function(){
function saveActiveTab(href) {
// Remove the old entry if exists, key is always dependant on the url
// This should be removed in the future
if (sessionStorage.getItem('active-tab')) {
sessionStorage.removeItem('active-tab');
}
// Reset the array
activeTabsHrefs = [];
// Save clicked tab href to the array
activeTabsHrefs.push(href);
// Store the selected tabs hrefs in sessionStorage
sessionStorage.setItem(window.location.href.toString().split(window.location.host)[1].replace(/&return=[a-zA-Z0-9%]+/, '').replace(/&[a-zA-Z-_]+=[0-9]+/, ''), JSON.stringify(activeTabsHrefs));
}
$('#item-form #myTabTabs a[data-toggle=\"tab\"]').on('show.bs.tab', function(e) {
console.log('Next active'+$(e.target).attr('href'));
localStorage.setItem('activeTab', $(e.target).attr('href'));
});
var activeTab = localStorage.getItem('activeTab');
if(activeTab){
saveActiveTab(activeTab);
}
});
})(j2store.jQuery);
</script>
";
return $html;
}
protected function getLabel()
{
return '';
}
public function getControlGroup()
{
return '<div class="j2store_catalog_article">'.$this->getInput().'</div>';
}
}