init
This commit is contained in:
17
modules/Contacts/AS_Popup.php
Executable file
17
modules/Contacts/AS_Popup.php
Executable file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
|
||||
if(!empty($_REQUEST['html'])) {
|
||||
require_once('modules/Contacts/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();
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user