mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-12-22 12:28:31 +00:00
21 lines
861 B
PHP
21 lines
861 B
PHP
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
require_once('include/generic/SugarWidgets/SugarWidgetSubPanelTopButton.php');
|
|
|
|
#[\AllowDynamicProperties]
|
|
class SugarWidgetSubPanelManageAcceptancesButton extends SugarWidgetSubPanelTopButton
|
|
{
|
|
public function display($defines, $additionalFormFields = null, $nonbutton = false)
|
|
{
|
|
global $mod_strings;
|
|
|
|
$button = "<form id='ManageAcceptancesForm' name='ManageAcceptancesForm' method='post' action=''>";
|
|
// $button .= "<input id='custom_hidden_5' type='hidden' name='custom_hidden_5' value=''/>";
|
|
$button .= "<input id='Manage_Acceptances' class='button' type='button' name='Manage_Acceptances' onclick='manage_acceptances();' value='".$mod_strings['LBL_MANAGE_ACCEPTANCES']."'/>\n</form>";
|
|
return $button;
|
|
}
|
|
}
|