/**
  * Constructor
  * @param $title The title for the column
  * @param $requestArgs array Parameters f5or cell actions.
  */
 function SignoffOnSignoffGridColumn($title = null, $userIds = array(), $requestArgs, $flags = array())
 {
     parent::BaseSignoffStatusColumn('considered', $title, null, $userIds, $requestArgs, $flags);
 }
 /**
  * Constructor
  * @param $id string Column ID
  * @param $title string Column title locale key
  * @param $titleTranslated string Column title, translated
  * @param $symbolic string Column symbolic name
  * @param $userIds array List of user IDs
  * @param $requestArgs array List of request parameters to include in URLs
  * @param $allowSignoffs boolean Whether or not to allow the user to sign off this column
  * @param $flags array Optional list of column flags
  */
 function SignoffStatusFromFileGridColumn($id, $title, $titleTranslated, $symbolic, $userIds, $requestArgs, $allowSignoffs = false, $flags = array())
 {
     $this->_symbolic = $symbolic;
     $this->_allowSignoffs = $allowSignoffs;
     parent::BaseSignoffStatusColumn($id, $title, $titleTranslated, $userIds, $requestArgs, $flags);
 }