You are here

function ctools_custom_content_ui::list_build_row in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 ctools_custom_content/plugins/export_ui/ctools_custom_content_ui.class.php \ctools_custom_content_ui::list_build_row()

Build a row based on the item.

By default all of the rows are placed into a table by the render method, so this is building up a row suitable for theme('table'). This doesn't have to be true if you override both.

Overrides ctools_export_ui::list_build_row

File

ctools_custom_content/plugins/export_ui/ctools_custom_content_ui.class.php, line 82

Class

ctools_custom_content_ui

Code

function list_build_row($item, &$form_state, $operations) {

  // Set up sorting
  switch ($form_state['values']['order']) {
    case 'disabled':
      $this->sorts[$item->name] = empty($item->disabled) . $item->admin_title;
      break;
    case 'title':
      $this->sorts[$item->name] = $item->admin_title;
      break;
    case 'name':
      $this->sorts[$item->name] = $item->name;
      break;
    case 'category':
      $this->sorts[$item->name] = $item->category;
      break;
    case 'storage':
      $this->sorts[$item->name] = $item->type . $item->admin_title;
      break;
  }
  $this->rows[$item->name] = array(
    'data' => array(
      array(
        'data' => check_plain($item->name),
        'class' => 'ctools-export-ui-name',
      ),
      array(
        'data' => check_plain($item->admin_title),
        'class' => 'ctools-export-ui-title',
      ),
      array(
        'data' => check_plain($item->category),
        'class' => 'ctools-export-ui-category',
      ),
      array(
        'data' => theme('links', $operations),
        'class' => 'ctools-export-ui-operations',
      ),
    ),
    'title' => check_plain($item->admin_description),
    'class' => !empty($item->disabled) ? 'ctools-export-ui-disabled' : 'ctools-export-ui-enabled',
  );
}