/**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['to'] = $this->t('To state');
     $header['label'] = $this->t('Button label');
     $header['roles'] = $this->t('Allowed roles');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = array('data' => $this->t('Payment method'));
     $header['plugin'] = array('data' => $this->t('Type'), 'class' => array(RESPONSIVE_PRIORITY_LOW));
     $header['status'] = array('data' => $this->t('Status'));
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = array('data' => $this->t('Shipping quote method'));
     $header['description'] = array('data' => $this->t('Description'), 'class' => array(RESPONSIVE_PRIORITY_LOW));
     $header['status'] = array('data' => $this->t('Status'));
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = t('Name');
     $header['color'] = t('Color');
     $header['point_value'] = t('Points');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = $this->t('Label');
     $header['pattern'] = $this->t('Pattern');
     $header['type'] = $this->t('Pattern type');
     $header['conditions'] = $this->t('Conditions');
     return $header + parent::buildHeader();
 }
Beispiel #6
0
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = $this->t('Name');
     $header['hostname'] = $this->t('Hostname');
     $header['status'] = $this->t('Status');
     $header['is_default'] = $this->t('Default');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = $this->t('Moderation state transition');
     $header['id'] = $this->t('Machine name');
     $header['from'] = $this->t('From state');
     $header['to'] = $this->t('To state');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = t('Translator name');
     $installed_translators = $this->translatorManager->getLabels();
     if (empty($installed_translators)) {
         drupal_set_message(t("There are no provider plugins available. Please install a provider plugin."), 'error');
     }
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = array('data' => $this->t('Label'));
     $header['url'] = array('data' => $this->t('URL'), 'class' => array(RESPONSIVE_PRIORITY_LOW));
     $header['plugin'] = array('data' => $this->t('Type'), 'class' => array(RESPONSIVE_PRIORITY_LOW));
     $header['status'] = array('data' => $this->t('Status'));
     $header['progress'] = array('data' => $this->t('Indexing progress'), 'class' => array(RESPONSIVE_PRIORITY_MEDIUM));
     return $header + parent::buildHeader();
 }
  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header['label'] = t('Flag');
    $header['flag_type'] = t('Flag Type');
    $header['roles'] = t('Roles');
    $header['bundles'] = t('Entity Bundles');
    $header['global'] = t('Scope');
    $header['status'] = t('Status');

    return $header + parent::buildHeader();
  }
 /**
  * {@inheritdoc}
  *
  * Building the header and content lines for the contact list.
  *
  * Calling the parent::buildHeader() adds a column for the possible actions
  * and inserts the 'edit' and 'delete' links as defined for the entity type.
  */
 public function buildHeader()
 {
     // The column 'weight' is added magically in the draggable EntityList.
     //  $header['weight'] = $this->t('Weight');
     // Some columns are not welcome in the list.
     //  $header['module'] = $this->t('Module');
     //  $header['wid'] = $this->t('Workflow');
     //  $header['sysid'] = $this->t('Sysid');
     // Column 'label' is manipulated in parent::buildForm(). So, we use 'label_new'.
     //  $header['label'] = $this->t('Label');
     $header['label_new'] = $this->t('Label');
     $header['id'] = $this->t('ID');
     $header['sysid'] = $this->t('');
     $header['status'] = $this->t('Active');
     $header['reassign'] = $this->t('Reassign');
     $header['count'] = $this->t('Count');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = t('Vocabulary name');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = $this->t('Name');
     $header['roles'] = $this->t('Roles');
     return $header + parent::buildHeader();
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header = array('label' => t('Name'), 'default' => t('Default')) + parent::buildHeader();
     return $header;
 }
 /**
  * {@inheritdoc}
  */
 public function buildHeader()
 {
     $header['label'] = $this->t('Moderation state');
     $header['id'] = $this->t('Machine name');
     return $header + parent::buildHeader();
 }