You are here

linkit_profiles.class.php in Linkit 7.3

Contains the Linkit profile export UI integration code.

File

plugins/export_ui/linkit_profiles.class.php
View source
<?php

/**
 * @file
 * Contains the Linkit profile export UI integration code.
 */

/**
 * Linktit profile export UI class handler for Views UI.
 */
class linkit_profiles extends ctools_export_ui {

  /**
   * @TODO: Can we call parent:list_build_row and then just add linkit specific
   * columns?
   */
  function list_build_row($item, &$form_state, $operations) {

    // Set up sorting
    $name = $item->{$this->plugin['export']['key']};
    $schema = ctools_export_get_schema($this->plugin['schema']);

    // Note: $item->{$schema['export']['export type string']} should have already been set up by export.inc so
    // we can use it safely.
    switch ($form_state['values']['order']) {
      case 'disabled':
        $this->sorts[$name] = empty($item->disabled) . $name;
        break;
      case 'title':
        $this->sorts[$name] = $item->{$this->plugin['export']['admin_title']};
        break;
      case 'name':
        $this->sorts[$name] = $name;
        break;
      case 'storage':
        $this->sorts[$name] = $item->{$schema['export']['export type string']} . $name;
        break;
      case 'weight':
        $this->sorts[$name] = isset($item->weight) ? $item->weight : 0;
        break;
    }
    $this->rows[$name]['data'] = array();
    $this->rows[$name]['class'] = !empty($item->disabled) ? array(
      'ctools-export-ui-disabled',
    ) : array(
      'ctools-export-ui-enabled',
    );

    // If we have an admin title, make it the first row.
    if (!empty($this->plugin['export']['admin_title'])) {
      $this->rows[$name]['data'][] = array(
        'data' => check_plain($item->{$this->plugin['export']['admin_title']}),
        'class' => array(
          'ctools-export-ui-title',
        ),
      );
    }

    // Profile type.
    $this->rows[$name]['data'][] = array(
      'data' => linkit_get_profile_type($item->profile_type),
      'class' => array(
        'linkit-export-ui-profile-type',
      ),
    );

    // Storage.
    $this->rows[$name]['data'][] = array(
      'data' => check_plain($item->{$schema['export']['export type string']}),
      'class' => array(
        'ctools-export-ui-storage',
      ),
    );

    // Operations.
    $ops = theme('links__ctools_dropbutton', array(
      'links' => $operations,
      'attributes' => array(
        'class' => array(
          'links',
          'inline',
        ),
      ),
    ));
    $this->rows[$name]['data'][] = array(
      'data' => $ops,
      'class' => array(
        'ctools-export-ui-operations',
      ),
    );

    // Add an automatic mouseover of the description if one exists.
    $this->rows[$name]['title'] = $item->{$this->plugin['export']['admin_description']};
  }
  function list_table_header() {
    $header = array();
    $header[] = array(
      'data' => t('Title'),
      'class' => array(
        'ctools-export-ui-title',
      ),
    );
    $header[] = array(
      'data' => t('Profile type'),
      'class' => array(
        'ctools-export-ui-profile-type',
      ),
    );
    $header[] = array(
      'data' => t('Storage'),
      'class' => array(
        'ctools-export-ui-storage',
      ),
    );
    $header[] = array(
      'data' => t('Operations'),
      'class' => array(
        'ctools-export-ui-operations',
      ),
    );
    return $header;
  }
  function list_sort_options() {
    return parent::list_sort_options() + array(
      'weight' => t('Weight'),
    );
  }

}

Classes

Namesort descending Description
linkit_profiles Linktit profile export UI class handler for Views UI.