A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.4 KiB

12 years ago
  1. <?php
  2. /**
  3. * This is the abstract Panel class for the List All functionality
  4. * of the TaxRate class. This code-generated class
  5. * contains a datagrid to display an HTML page that can
  6. * list a collection of TaxRate objects. It includes
  7. * functionality to perform pagination and sorting on columns.
  8. *
  9. * To take advantage of some (or all) of these control objects, you
  10. * must create a new QPanel which extends this TaxRateListPanelBase
  11. * class.
  12. *
  13. * Any and all changes to this file will be overwritten with any subsequent re-
  14. * code generation.
  15. *
  16. * @package Quasi
  17. * @subpackage Drafts
  18. *
  19. */
  20. class TaxRateListPanel extends QPanel {
  21. // Local instance of the Meta DataGrid to list TaxRates
  22. public $dtgTaxRates;
  23. // Other public QControls in this panel
  24. public $btnCreateNew;
  25. public $pxyEdit;
  26. // Callback Method Names
  27. protected $strSetEditPanelMethod;
  28. protected $strCloseEditPanelMethod;
  29. public function __construct($objParentObject, $strSetEditPanelMethod, $strCloseEditPanelMethod, $strControlId = null) {
  30. // Call the Parent
  31. try {
  32. parent::__construct($objParentObject, $strControlId);
  33. } catch (QCallerException $objExc) {
  34. $objExc->IncrementOffset();
  35. throw $objExc;
  36. }
  37. // Record Method Callbacks
  38. $this->strSetEditPanelMethod = $strSetEditPanelMethod;
  39. $this->strCloseEditPanelMethod = $strCloseEditPanelMethod;
  40. // Setup the Template
  41. $this->Template = 'TaxRateListPanel.tpl.php';
  42. // Instantiate the Meta DataGrid
  43. $this->dtgTaxRates = new TaxRateDataGrid($this);
  44. // Style the DataGrid (if desired)
  45. $this->dtgTaxRates->CssClass = 'datagrid';
  46. $this->dtgTaxRates->AlternateRowStyle->CssClass = 'alternate';
  47. // Add Pagination (if desired)
  48. $this->dtgTaxRates->Paginator = new QPaginator($this->dtgTaxRates);
  49. $this->dtgTaxRates->ItemsPerPage = 8;
  50. // Use the MetaDataGrid functionality to add Columns for this datagrid
  51. // Create an Edit Column
  52. $this->pxyEdit = new QControlProxy($this);
  53. $this->pxyEdit->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'pxyEdit_Click'));
  54. $this->dtgTaxRates->MetaAddEditProxyColumn($this->pxyEdit, 'Edit', 'Edit');
  55. // Create the Other Columns (note that you can use strings for tax_rate's properties, or you
  56. // can traverse down QQN::tax_rate() to display fields that are down the hierarchy)
  57. $this->dtgTaxRates->MetaAddColumn('Id');
  58. $this->dtgTaxRates->MetaAddTypeColumn('ZoneId', 'ZoneType');
  59. $this->dtgTaxRates->MetaAddColumn('Rate');
  60. // Setup the Create New button
  61. $this->btnCreateNew = new QButton($this);
  62. $this->btnCreateNew->Text = QApplication::Translate('Create a New') . ' ' . QApplication::Translate('TaxRate');
  63. $this->btnCreateNew->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnCreateNew_Click'));
  64. }
  65. public function pxyEdit_Click($strFormId, $strControlId, $strParameter) {
  66. $strParameterArray = explode(',', $strParameter);
  67. $objEditPanel = new TaxRateEditPanel($this, $this->strCloseEditPanelMethod, $strParameterArray[0]);
  68. $strMethodName = $this->strSetEditPanelMethod;
  69. $this->objForm->$strMethodName($objEditPanel);
  70. }
  71. public function btnCreateNew_Click($strFormId, $strControlId, $strParameter) {
  72. $objEditPanel = new TaxRateEditPanel($this, $this->strCloseEditPanelMethod, null);
  73. $strMethodName = $this->strSetEditPanelMethod;
  74. $this->objForm->$strMethodName($objEditPanel);
  75. }
  76. }
  77. ?>