This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

17
modules/PContacts/AS_Popup.php Executable file
View File

@@ -0,0 +1,17 @@
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
if(!empty($_REQUEST['html'])) {
require_once('modules/PContacts/Popup_picker.php');
$popup = new Popup_Picker();
if($_REQUEST['html'] == 'Dial' )
$popup->process_page_dial();
} else {
require_once('include/Popups/Popup_picker.php');
$popup = new Popup_Picker();
echo $popup->process_page();
}
?>