You are here

class PDWorkflow in GlobalLink Connect for Drupal 7.7

Hierarchy

Expanded class hierarchy of PDWorkflow

File

gl_ws/glc/model/Workflow.inc.php, line 2

View source
class PDWorkflow {

  /**
   * Workflow name
   */
  public $name;

  /**
   * Workflow ticket
   */
  public $ticket;
  function __construct($externalWorkflow) {
    $this->name = $externalWorkflow->name;
    $this->ticket = $externalWorkflow->ticket;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PDWorkflow::$name public property Workflow name
PDWorkflow::$ticket public property Workflow ticket
PDWorkflow::__construct function