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.

101 lines
3.9 KiB

12 years ago
  1. <?php
  2. /**
  3. * This is the abstract Panel class for the List All functionality
  4. * of the Module class. This code-generated class
  5. * contains a datagrid to display an HTML page that can
  6. * list a collection of Module 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 ModuleListPanelBase
  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 ModuleListPanel extends QPanel {
  21. // Local instance of the Meta DataGrid to list Modules
  22. public $dtgModules;
  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 = 'ModuleListPanel.tpl.php';
  42. // Instantiate the Meta DataGrid
  43. $this->dtgModules = new ModuleDataGrid($this);
  44. // Style the DataGrid (if desired)
  45. $this->dtgModules->CssClass = 'datagrid';
  46. $this->dtgModules->AlternateRowStyle->CssClass = 'alternate';
  47. // Add Pagination (if desired)
  48. $this->dtgModules->Paginator = new QPaginator($this->dtgModules);
  49. $this->dtgModules->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->dtgModules->MetaAddEditProxyColumn($this->pxyEdit, 'Edit', 'Edit');
  55. // Create the Other Columns (note that you can use strings for module's properties, or you
  56. // can traverse down QQN::module() to display fields that are down the hierarchy)
  57. $this->dtgModules->MetaAddColumn('Id');
  58. $this->dtgModules->MetaAddColumn('Name');
  59. $this->dtgModules->MetaAddColumn('Cssclass');
  60. $this->dtgModules->MetaAddColumn('Title');
  61. $this->dtgModules->MetaAddColumn('Description');
  62. $this->dtgModules->MetaAddColumn('ClassName');
  63. $this->dtgModules->MetaAddColumn('ShowTitle');
  64. $this->dtgModules->MetaAddColumn('ShowDescription');
  65. $this->dtgModules->MetaAddColumn(QQN::Module()->ContentBlock);
  66. $this->dtgModules->MetaAddColumn(QQN::Module()->ParentModule);
  67. $this->dtgModules->MetaAddTypeColumn('PublicPermissionsId', 'PermissionType');
  68. $this->dtgModules->MetaAddTypeColumn('UserPermissionsId', 'PermissionType');
  69. $this->dtgModules->MetaAddTypeColumn('GroupPermissionsId', 'PermissionType');
  70. // Setup the Create New button
  71. $this->btnCreateNew = new QButton($this);
  72. $this->btnCreateNew->Text = QApplication::Translate('Create a New') . ' ' . QApplication::Translate('Module');
  73. $this->btnCreateNew->AddAction(new QClickEvent(), new QAjaxControlAction($this, 'btnCreateNew_Click'));
  74. }
  75. public function pxyEdit_Click($strFormId, $strControlId, $strParameter) {
  76. $strParameterArray = explode(',', $strParameter);
  77. $objEditPanel = new ModuleEditPanel($this, $this->strCloseEditPanelMethod, $strParameterArray[0]);
  78. $strMethodName = $this->strSetEditPanelMethod;
  79. $this->objForm->$strMethodName($objEditPanel);
  80. }
  81. public function btnCreateNew_Click($strFormId, $strControlId, $strParameter) {
  82. $objEditPanel = new ModuleEditPanel($this, $this->strCloseEditPanelMethod, null);
  83. $strMethodName = $this->strSetEditPanelMethod;
  84. $this->objForm->$strMethodName($objEditPanel);
  85. }
  86. }
  87. ?>