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.

109 lines
4.6 KiB

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