/**
  * Constructor
  * @param $actionArgs array Action arguments
  * @param $query Query
  * @param $queryNotesGrid The notes grid containing this row
  */
 function __construct($actionArgs, $query, $queryNotesGrid)
 {
     $this->_actionArgs = $actionArgs;
     $this->_query = $query;
     $this->_queryNotesGrid = $queryNotesGrid;
     parent::__construct();
 }
 /**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct();
     // Set a default cell provider that will get the cell template
     // variables from the category grid row.
     $this->setCellProvider(new GridCategoryRowCellProvider());
 }
 /**
  * Constructor
  * @param $submission Submission
  * @param $stageId int
  * @param $queriesAccessHelper QueriesAccessHelper
  */
 function __construct($submission, $stageId, $queriesAccessHelper)
 {
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_queriesAccessHelper = $queriesAccessHelper;
     parent::__construct();
 }
 /**
  * Constructor
  */
 function __construct($submission, $stageId, $canAdminister = false)
 {
     $this->_submission = $submission;
     $this->_stageId = $stageId;
     $this->_canAdminister = $canAdminister;
     parent::__construct();
 }
 /**
  * Constructor
  * @param $userRoles array
  * @param $contextLevel int CONTEXT_...
  */
 function __construct($userRoles, $contextLevel)
 {
     $this->_userRoles = $userRoles;
     $this->_contextLevel = $contextLevel;
     parent::__construct();
 }
Ejemplo n.º 6
0
 /**
  * Constructor
  */
 function __construct($issueId)
 {
     parent::__construct();
     $this->setRequestArgs(array_merge((array) $this->getRequestArgs(), array('issueId' => $issueId)));
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructor
  * @param $hasDeleteItemLink boolean
  */
 function __construct($hasDeleteItemLink = true)
 {
     parent::__construct();
     $this->setHasDeleteItemLink($hasDeleteItemLink);
 }
 /**
  * Constructor
  */
 function __construct($isManager)
 {
     parent::__construct();
     $this->_isManager = $isManager;
 }
 /**
  * Constructor
  */
 function __construct($oldUserId = null)
 {
     $this->_oldUserId = $oldUserId;
     parent::__construct();
 }
 /**
  * Constructor
  * @param $capabilities FilesGridCapabilities
  * @param $stageId int Stage ID (optional)
  */
 function __construct($capabilities = null, $stageId = null)
 {
     $this->_capabilities = $capabilities;
     $this->_stageId = $stageId;
     parent::__construct();
 }
Ejemplo n.º 12
0
 /**
  * Constructor
  * @param $submission Submission
  */
 function __construct($submission)
 {
     $this->_submission = $submission;
     parent::__construct();
 }
 /**
  * Constructor
  */
 function __construct($canEdit = false, $submission = null)
 {
     $this->_canEdit = $canEdit;
     $this->_submission = $submission;
     parent::__construct();
 }
Ejemplo n.º 14
0
 /**
  * Constructor
  * @param $press Press
  */
 function __construct($press)
 {
     $this->setPress($press);
     parent::__construct();
 }
Ejemplo n.º 15
0
 /**
  * Constructor
  */
 function __construct($submission, $readOnly = false)
 {
     $this->_submission = $submission;
     $this->_readOnly = $readOnly;
     parent::__construct();
 }
Ejemplo n.º 16
0
 /**
  * Constructor
  */
 function __construct($monograph)
 {
     $this->_monograph = $monograph;
     parent::__construct();
 }
Ejemplo n.º 17
0
 /**
  * Constructor
  * @param $issueId int
  */
 function __construct($issueId)
 {
     parent::__construct();
     $this->issueId = $issueId;
 }