/**
  * Constructor.
  * @param $typeOption int Defines which grid elements will
  * be orderable (categories and/or rows).
  * @param $overrideRowTemplate boolean This feature uses row
  * actions and it will force the usage of the gridRow.tpl.
  * If you want to use a different grid row template file, set this flag to
  * false and make sure to use a template file that adds row actions.
  */
 function OrderCategoryGridItemsFeature($typeOption = ORDER_CATEGORY_GRID_CATEGORIES_AND_ROWS, $overrideRowTemplate = true)
 {
     parent::OrderItemsFeature($overrideRowTemplate);
     $this->addOptions(array('type' => $typeOption));
 }
 /**
  * Constructor.
  */
 function OrderListbuilderItemsFeature()
 {
     parent::OrderItemsFeature(false);
 }
 /**
  * Constructor.
  */
 function OrderMultipleListsItemsFeature()
 {
     parent::OrderItemsFeature(false);
 }
 /**
  * Constructor.
  * @param $overrideRowTemplate boolean This feature uses row
  * actions and it will force the usage of the gridRow.tpl.
  * If you want to use a different grid row template file, set this flag to
  * false and make sure to use a template file that adds row actions.
  */
 function OrderGridItemsFeature($overrideRowTemplate = true)
 {
     parent::OrderItemsFeature($overrideRowTemplate);
 }
예제 #5
0
 /**
  * Constructor.
  * @copydoc OrderItemsFeature::OrderItemsFeature()
  */
 function OrderGridItemsFeature($overrideRowTemplate = true, $nonOrderableItemsMessage = null)
 {
     parent::OrderItemsFeature($overrideRowTemplate, $nonOrderableItemsMessage);
 }