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.

97 lines
4.0 KiB

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