You are here

workflow_views_handler_argument_state.inc in Workflow 6.2

Provide views argument handler for workflow.module.

File

workflow_views/includes/workflow_views_handler_argument_state.inc
View source
<?php

/**
 * @file
 * Provide views argument handler for workflow.module.
 */

/**
 * Argument handler to accept a node type.
 */
class views_handler_argument_workflow_state extends views_handler_argument {
  function construct() {
    parent::construct('type');
  }

  /**
   * Override the behavior of summary_name(). Get the user-friendly version
   * of the workflow state.
   */
  function summary_name($data) {
    return $this
      ->workflow_states($data->{$this->name_alias});
  }

  /**
   * Override the behavior of title(). Get the user-friendly version of the
   * workflow state.
   */
  function title() {
    return $this
      ->workflow_states($this->argument);
  }
  function workflow_states($sid) {
    if (empty($sid)) {
      return t('No state');
    }
    static $states;
    if (!isset($states)) {
      $states = workflow_get_states();
    }
    $output = $states[$sid];
    if (empty($output)) {
      $output = t('No state');
    }
    return check_plain($output);
  }

}

Classes

Namesort descending Description
views_handler_argument_workflow_state Argument handler to accept a node type.