HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/public_html/guiaweb/htdocs/core/tpl/formlayoutai.tpl.php
<?php
/* Copyright (C) 2024  Laurent Destailleur  <eldy@users.sourceforge.net>
 * Copyright (C) 2024-2025	MDW						<mdeweerd@users.noreply.github.com>
 * Copyright (C) 2024-2025  Frédéric France         <frederic.france@free.fr>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 */

 /**
 * @var Conf $conf
 * @var DoliDB $db
 * @var CommonObject 	$object
 * @var Translate 		$langs
 * @var ?FormMail 		$formmail
 * @var ?FormWebsite 	$formwebsite
 * @var ?FormAI 		$formai
 * @var string 			$htmlname
 * @var string 			$showlinktolayout		'emailing', 'email', 'websitepage', ...
 * @var string 			$showlinktolayoutlabel	'...'
 * @var string 			$showlinktoai			'' or 'textgeneration', 'textgenerationemail', 'textgenerationwebpage', ...
 * @var string 			$showlinktoailabel		'...'
 * @var	string			$htmlname
 * @var ?string			$out
 * @var	?string			$aiprompt
 */

//Protection to avoid direct call of template
if (empty($conf) || !is_object($conf)) {
	print "Error, template page can't be called as URL";
	exit(1);
}

if (empty($langs)) {
	print 'Parameter langs not defined.';
	exit(1);
}
if (empty($htmlname)) {
	print 'Parameter htmlname not defined.';
	exit(1);
}

?>
<!-- BEGIN PHP TEMPLATE formlayoutai.tpl.php -->
<?php

'
@phan-var-force ?FormWebSite 	$formwebsite
@phan-var-force ?FormMail 		$formmail
@phan-var-force ?FormAI 		$formai
@phan-var-force string 			$showlinktolayout
@phan-var-force string			$showlinktolayoutlabel
@phan-var-force string          $showlinktoai
@phan-var-force string          $showlinktoailabel
@phan-var-force ?string         $out
@phan-var-force ?string         $morecss
@phan-var-force string          $aiprompt
';

if (!isset($out)) {	// Init to empty string if not defined
	$out = '';
}
if (!isset($morecss)) {	// Init to empty string if not defined
	$morecss = '';
}
if (!isset($aiprompt)) {	// Init to empty string if not defined
	$aiprompt = '';
}
// Add link to add layout
if ($showlinktolayout) {	// May be set only if MAIN_EMAIL_USE_LAYOUT is set
	$out .= '<a href="#" id="linkforlayouttemplates" class="notasortlink inline-block alink marginrightonly">';
	$out .= img_picto($showlinktolayoutlabel, 'layout', 'class="paddingrightonly"');
	$out .= '<span class="hideobject hideonsmartphone">'.$showlinktolayoutlabel.'...</span>';
	$out .= '</a> &nbsp; &nbsp; ';

	$out .= '<script>
						$(document).ready(function() {
  							$("#linkforlayouttemplates").click(function() {
								console.log("We click on linkforlayouttemplates, we toggle .template-selector");
								event.preventDefault();
								jQuery(".template-selector").toggle();
								jQuery(".ai_input'.$htmlname.'").hide();
								jQuery("#pageContent").show();	// May exists for website page only
							});
						});
					</script>
					';
}
// Add link to add AI content
if ($showlinktoai) {
	// TODO Diff between showlinktoai and htmlname ? Why not using one key only ?
	$out .= '<a href="#" id="linkforaiprompt'.$showlinktoai.'" class="notasortlink inline-block alink '.$morecss.'">';
	$out .= img_picto($showlinktoailabel, 'ai', 'class="paddingrightonly"');
	$out .= '<span class="hideobject hideonsmartphone">'.$showlinktoailabel.'...</span>';
	$out .= '</a>';

	$out .= '<script>
						$(document).ready(function() {
  							$("#linkforaiprompt'.$showlinktoai.'").click(function() {
								console.log("formlayoutai.tpl: We click on linkforaiprompt'.$showlinktoai.', we toggle .ai_input'.$showlinktoai.'");
								event.preventDefault();
								jQuery(".ai_dropdown'.$htmlname.'").toggle();
								jQuery(".template-selector").hide();
								jQuery(".email-layout-container").hide();
								if (!jQuery("#ai_dropdown'.$htmlname.'").is(":hidden")) {
									console.log("Set focus on input field #ai_instructions'.$htmlname.'");
									jQuery("#ai_instructions'.$htmlname.'").focus();
									if (!jQuery("pageContent").is(":hidden")) {		// May exists for website page only
										jQuery("#pageContent").show();
									}
								}
							});
							$(document).on("click", function (event) {
								aidropdown = $(".ai_dropdown'.$htmlname.'");
								aidropdownbutton = $("#linkforaiprompt'.$showlinktoai.'");
								if (!aidropdown.is(event.target) && !aidropdownbutton.is(event.target) && $(event.target).closest(aidropdown).length === 0 && $(event.target).closest(aidropdownbutton).length === 0 && aidropdown.is(":visible")) {
									console.log("You clicked outside of ai_dropdown - we close it");
									$(".ai_dropdown'.$htmlname.'").hide();
								}
							});
						});
					</script>
					';
}

if ($showlinktolayout) {
	if (!empty($formwebsite) && is_object($formwebsite)) {
		$out .= $formwebsite->getContentPageTemplate($htmlname);
	} else {
		if (!is_object($formmail)) {
			// Create form object
			include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
			$formmail = new FormMail($db);
		}
		$out .= $formmail->getEmailLayoutSelector($htmlname, $showlinktolayout);
	}
} else {
	$out .= '<!-- No link to the layout feature, $formmail->withlayout must be set to a string use case, module WYSIWYG must be enabled and MAIN_EMAIL_USE_LAYOUT must be set -->';
}

/** @var ?FormAI $formai */

if ($showlinktoai) {
	if (empty($formai) || $formai instanceof FormAI) {
		include_once DOL_DOCUMENT_ROOT.'/core/class/html.formai.class.php';
		$formai = new FormAI($db);
	}
	$out .= $formai->getAjaxAICallFunction();

	if (empty($onlyenhancements)) {
		$onlyenhancements = '';
	}
	if (!empty($aiprompt) && !empty($object)) {
		$formai->setSubstitFromObject($object, $langs);
		$aiprompt = make_substitutions($aiprompt, $formai->substit);
	}
	$out .= $formai->getSectionForAIEnhancement($showlinktoai, $formmail->withaiprompt, $htmlname, $onlyenhancements, $aiprompt);
} else {
	$out .= '<!-- No link to the AI feature, $formmail->withaiprompt must be set to the ai feature and module ai must be enabled -->';
}

?>
<!-- END PHP TEMPLATE commonfields_edit.tpl.php -->