Beispiel #1
0
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['items_per_page'] = array('default' => 10);
     $options['offset'] = array('default' => 0);
     return $options;
 }
Beispiel #2
0
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['items_per_page'] = array('default' => 10);
     $options['offset'] = array('default' => 0);
     $options['id'] = array('default' => 0);
     $options['total_pages'] = array('default' => '');
     $options['expose'] = array('contains' => array('items_per_page' => array('default' => FALSE, 'bool' => TRUE), 'items_per_page_label' => array('default' => 'Items per page', 'translatable' => TRUE), 'items_per_page_options' => array('default' => '5, 10, 20, 40, 60'), 'items_per_page_options_all' => array('default' => FALSE, 'bool' => TRUE), 'items_per_page_options_all_label' => array('default' => '- All -', 'translatable' => TRUE), 'offset' => array('default' => FALSE, 'bool' => TRUE), 'offset_label' => array('default' => 'Offset', 'translatable' => TRUE)));
     $options['tags'] = array('contains' => array('previous' => array('default' => '‹ previous', 'translatable' => TRUE), 'next' => array('default' => 'next ›', 'translatable' => TRUE)));
     return $options;
 }
Beispiel #3
0
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['items_per_page'] = array('default' => 10);
     $options['offset'] = array('default' => 0);
     $options['id'] = array('default' => 0);
     $options['total_pages'] = array('default' => '');
     $options['expose'] = array('contains' => array('items_per_page' => array('default' => FALSE), 'items_per_page_label' => array('default' => $this->t('Items per page')), 'items_per_page_options' => array('default' => '5, 10, 25, 50'), 'items_per_page_options_all' => array('default' => FALSE), 'items_per_page_options_all_label' => array('default' => $this->t('- All -')), 'offset' => array('default' => FALSE), 'offset_label' => array('default' => $this->t('Offset'))));
     $options['tags'] = array('contains' => array('previous' => array('default' => $this->t('‹ previous')), 'next' => array('default' => $this->t('next ›'))));
     return $options;
 }
Beispiel #4
0
 /**
  * {@inheritdoc}
  */
 protected function defineOptions()
 {
     $options = parent::defineOptions();
     $options['exclude_display'] = array('default' => FALSE);
     return $options;
 }