예제 #1
0
 /**
  * Constructor
  * @param $url string The URL of the AJAX resource to load into the wizard modal.
  * @param $title string (optional) The localized modal title.
  * @param $titleIcon string (optional) The icon to be used in the modal title bar.
  * @param $canClose boolean (optional) Whether the modal will have a close button.
  */
 function WizardModal($url, $title = null, $titleIcon = null, $canClose = true)
 {
     parent::AjaxModal($url, $title, $titleIcon, $canClose);
 }
예제 #2
0
 /**
  * Constructor
  * @param $url string The URL of the AJAX resource to load into the modal.
  * @param $title string (optional) The localized modal title.
  * @param $titleIcon string (optional) The icon to be used in the modal title bar.
  * @param $canClose boolean (optional) Whether the modal will have a close button.
  */
 function AjaxLegacyPluginModal($url, $title = null, $titleIcon = null, $canClose = true)
 {
     parent::AjaxModal($url, $title, $titleIcon, $canClose);
 }