Exemplo n.º 1
0
 public function __construct($objParentObject, $strClosePanelMethod, $intId = null, $strControlId = null)
 {
     // Call the Parent
     try {
         parent::__construct($objParentObject, $strControlId);
     } catch (QCallerException $objExc) {
         $objExc->IncrementOffset();
         throw $objExc;
     }
     // Setup Callback and Template
     $this->strTemplate = 'MyassetsEditPanel.tpl.php';
     $this->strClosePanelMethod = $strClosePanelMethod;
     // Construct the MyassetsMetaControl
     // MAKE SURE we specify "$this" as the MetaControl's (and thus all subsequent controls') parent
     $this->mctMyassets = MyassetsMetaControl::Create($this, $intId);
     // Call MetaControl's methods to create qcontrols based on Myassets's data fields
     $this->lblId = $this->mctMyassets->lblId_Create();
     $this->txtAsin = $this->mctMyassets->txtAsin_Create();
     $this->txtDetailPageURL = $this->mctMyassets->txtDetailPageURL_Create();
     $this->txtTitle = $this->mctMyassets->txtTitle_Create();
     $this->txtProductGroup = $this->mctMyassets->txtProductGroup_Create();
     $this->txtImageURL = $this->mctMyassets->txtImageURL_Create();
     $this->txtAuthor = $this->mctMyassets->txtAuthor_Create();
     $this->txtNumberOfPages = $this->mctMyassets->txtNumberOfPages_Create();
     $this->txtPublisher = $this->mctMyassets->txtPublisher_Create();
     $this->txtIsbn = $this->mctMyassets->txtIsbn_Create();
     $this->txtActor = $this->mctMyassets->txtActor_Create();
     $this->txtDirector = $this->mctMyassets->txtDirector_Create();
     $this->txtRunningTime = $this->mctMyassets->txtRunningTime_Create();
     $this->txtArtist = $this->mctMyassets->txtArtist_Create();
     $this->txtLabel = $this->mctMyassets->txtLabel_Create();
     $this->txtNumberOfDiscs = $this->mctMyassets->txtNumberOfDiscs_Create();
     $this->txtTracks = $this->mctMyassets->txtTracks_Create();
     $this->txtLanguage = $this->mctMyassets->txtLanguage_Create();
     $this->txtGenre = $this->mctMyassets->txtGenre_Create();
     // Create Buttons and Actions on this Form
     $this->btnSave = new QButton($this);
     $this->btnSave->Text = QApplication::Translate('Save');
     $this->btnSave->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnSave_Click'));
     $this->btnSave->CausesValidation = $this;
     $this->btnCancel = new QButton($this);
     $this->btnCancel->Text = QApplication::Translate('Cancel');
     $this->btnCancel->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnCancel_Click'));
     $this->btnDelete = new QButton($this);
     $this->btnDelete->Text = QApplication::Translate('Delete');
     $this->btnDelete->AddAction(new QClickEvent(), new QConfirmAction(QApplication::Translate('Are you SURE you want to DELETE this') . ' ' . QApplication::Translate('Myassets') . '?'));
     $this->btnDelete->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnDelete_Click'));
     $this->btnDelete->Visible = $this->mctMyassets->EditMode;
 }
Exemplo n.º 2
0
 protected function Form_Create()
 {
     // Use the CreateFromPathInfo shortcut (this can also be done manually using the MyassetsMetaControl constructor)
     // MAKE SURE we specify "$this" as the MetaControl's (and thus all subsequent controls') parent
     $this->mctMyassets = MyassetsMetaControl::CreateFromPathInfo($this);
     // Call MetaControl's methods to create qcontrols based on Myassets's data fields
     $this->lblId = $this->mctMyassets->lblId_Create();
     $this->txtAsin = $this->mctMyassets->txtAsin_Create();
     $this->txtDetailPageURL = $this->mctMyassets->txtDetailPageURL_Create();
     $this->txtTitle = $this->mctMyassets->txtTitle_Create();
     $this->txtProductGroup = $this->mctMyassets->txtProductGroup_Create();
     $this->txtImageURL = $this->mctMyassets->txtImageURL_Create();
     $this->txtAuthor = $this->mctMyassets->txtAuthor_Create();
     $this->txtNumberOfPages = $this->mctMyassets->txtNumberOfPages_Create();
     $this->txtPublisher = $this->mctMyassets->txtPublisher_Create();
     $this->txtIsbn = $this->mctMyassets->txtIsbn_Create();
     $this->txtActor = $this->mctMyassets->txtActor_Create();
     $this->txtDirector = $this->mctMyassets->txtDirector_Create();
     $this->txtRunningTime = $this->mctMyassets->txtRunningTime_Create();
     $this->txtArtist = $this->mctMyassets->txtArtist_Create();
     $this->txtLabel = $this->mctMyassets->txtLabel_Create();
     $this->txtNumberOfDiscs = $this->mctMyassets->txtNumberOfDiscs_Create();
     $this->txtTracks = $this->mctMyassets->txtTracks_Create();
     $this->txtLanguage = $this->mctMyassets->txtLanguage_Create();
     $this->txtGenre = $this->mctMyassets->txtGenre_Create();
     // Create Buttons and Actions on this Form
     $this->btnSave = new QButton($this);
     $this->btnSave->Text = QApplication::Translate('Save');
     $this->btnSave->AddAction(new QClickEvent(), new QAjaxAction('btnSave_Click'));
     $this->btnSave->CausesValidation = true;
     $this->btnCancel = new QButton($this);
     $this->btnCancel->Text = QApplication::Translate('Cancel');
     $this->btnCancel->AddAction(new QClickEvent(), new QAjaxAction('btnCancel_Click'));
     $this->btnDelete = new QButton($this);
     $this->btnDelete->Text = QApplication::Translate('Delete');
     $this->btnDelete->AddAction(new QClickEvent(), new QConfirmAction(QApplication::Translate('Are you SURE you want to DELETE this') . ' ' . QApplication::Translate('Myassets') . '?'));
     $this->btnDelete->AddAction(new QClickEvent(), new QAjaxAction('btnDelete_Click'));
     $this->btnDelete->Visible = $this->mctMyassets->EditMode;
 }
 /**
  * Static Helper Method to Create using QueryString arguments
  *
  * @param mixed $objParentObject QForm or QPanel which will be using this MyassetsMetaControl
  * @param QMetaControlCreateType $intCreateType rules governing Myassets object creation - defaults to CreateOrEdit
  * @return MyassetsMetaControl
  */
 public static function CreateFromQueryString($objParentObject, $intCreateType = QMetaControlCreateType::CreateOrEdit)
 {
     $intId = QApplication::QueryString('intId');
     return MyassetsMetaControl::Create($objParentObject, $intId, $intCreateType);
 }