joomla-component/admin/views/prompt/tmpl/edit.php

145 lines
5.4 KiB
PHP
Raw Normal View History

2023-07-26 09:09:42 +00:00
<?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('Restricted access');
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\HTML\HTMLHelper as Html;
use Joomla\CMS\Layout\LayoutHelper;
use Joomla\CMS\Router\Route;
Html::addIncludePath(JPATH_COMPONENT.'/helpers/html');
Html::_('behavior.formvalidator');
Html::_('formbehavior.chosen', 'select');
Html::_('behavior.keepalive');
2023-07-26 09:09:42 +00:00
$componentParams = $this->params; // will be removed just use $this->params instead
?>
<script type="text/javascript">
// waiting spinner
var outerDiv = jQuery('body');
jQuery('<div id="loading"></div>')
.css("background", "rgba(255, 255, 255, .8) url('components/com_getbible/assets/images/import.gif') 50% 15% no-repeat")
.css("top", outerDiv.position().top - jQuery(window).scrollTop())
.css("left", outerDiv.position().left - jQuery(window).scrollLeft())
.css("width", outerDiv.width())
.css("height", outerDiv.height())
.css("position", "fixed")
.css("opacity", "0.80")
.css("-ms-filter", "progid:DXImageTransform.Microsoft.Alpha(Opacity = 80)")
.css("filter", "alpha(opacity = 80)")
.css("display", "none")
.appendTo(outerDiv);
jQuery('#loading').show();
// when page is ready remove and show
jQuery(window).load(function() {
jQuery('#getbible_loader').fadeIn('fast');
jQuery('#loading').hide();
});
</script>
<div id="getbible_loader" style="display: none;">
<form action="<?php echo Route::_('index.php?option=com_getbible&layout=edit&id='. (int) $this->item->id . $this->referral); ?>" method="post" name="adminForm" id="adminForm" class="form-validate" enctype="multipart/form-data">
2023-07-26 09:09:42 +00:00
<?php echo LayoutHelper::render('prompt.prompt_above', $this); ?>
2023-07-26 09:09:42 +00:00
<div class="form-horizontal">
<?php echo Html::_('bootstrap.startTabSet', 'promptTab', array('active' => 'prompt')); ?>
2023-07-26 09:09:42 +00:00
<?php echo Html::_('bootstrap.addTab', 'promptTab', 'prompt', Text::_('COM_GETBIBLE_PROMPT_PROMPT', true)); ?>
2023-07-26 09:09:42 +00:00
<div class="row-fluid form-horizontal-desktop">
<div class="span6">
<?php echo LayoutHelper::render('prompt.prompt_left', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
<div class="span6">
<?php echo LayoutHelper::render('prompt.prompt_right', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
</div>
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<?php echo LayoutHelper::render('prompt.prompt_fullwidth', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
2023-07-26 09:09:42 +00:00
<?php echo Html::_('bootstrap.addTab', 'promptTab', 'open_ai', Text::_('COM_GETBIBLE_PROMPT_OPEN_AI', true)); ?>
2023-07-26 09:09:42 +00:00
<div class="row-fluid form-horizontal-desktop">
<div class="span6">
<?php echo LayoutHelper::render('prompt.open_ai_left', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
<div class="span6">
<?php echo LayoutHelper::render('prompt.open_ai_right', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
2023-07-26 09:09:42 +00:00
<?php $this->ignore_fieldsets = array('details','metadata','vdmmetadata','accesscontrol'); ?>
<?php $this->tab_name = 'promptTab'; ?>
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
2023-07-26 09:09:42 +00:00
<?php if ($this->canDo->get('prompt.edit.created_by') || $this->canDo->get('prompt.edit.created') || $this->canDo->get('prompt.edit.state') || ($this->canDo->get('prompt.delete') && $this->canDo->get('prompt.edit.state'))) : ?>
<?php echo Html::_('bootstrap.addTab', 'promptTab', 'publishing', Text::_('COM_GETBIBLE_PROMPT_PUBLISHING', true)); ?>
2023-07-26 09:09:42 +00:00
<div class="row-fluid form-horizontal-desktop">
<div class="span6">
<?php echo LayoutHelper::render('prompt.publishing', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
<div class="span6">
<?php echo LayoutHelper::render('prompt.publlshing', $this); ?>
2023-07-26 09:09:42 +00:00
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
2023-07-26 09:09:42 +00:00
<?php endif; ?>
<?php if ($this->canDo->get('core.admin')) : ?>
<?php echo Html::_('bootstrap.addTab', 'promptTab', 'permissions', Text::_('COM_GETBIBLE_PROMPT_PERMISSION', true)); ?>
2023-07-26 09:09:42 +00:00
<div class="row-fluid form-horizontal-desktop">
<div class="span12">
<fieldset class="adminform">
<div class="adminformlist">
<?php foreach ($this->form->getFieldset('accesscontrol') as $field): ?>
<div>
<?php echo $field->label; echo $field->input;?>
</div>
<div class="clearfix"></div>
<?php endforeach; ?>
</div>
</fieldset>
</div>
</div>
<?php echo Html::_('bootstrap.endTab'); ?>
2023-07-26 09:09:42 +00:00
<?php endif; ?>
<?php echo Html::_('bootstrap.endTabSet'); ?>
2023-07-26 09:09:42 +00:00
<div>
<input type="hidden" name="task" value="prompt.edit" />
<?php echo Html::_('form.token'); ?>
2023-07-26 09:09:42 +00:00
</div>
</div>
</form>
</div>
<script type="text/javascript">
window.onload = function() {
// Dynamic Field Manager
let manager = new DynamicFieldManager('jform_integration', 'jform_cache_behaviour', '2', '2', '1');
}
</script>