public function __construct($name)
 {
     parent::__construct($name);
     $this->arProperties = array("Title" => "");
 }
Пример #2
0
 public function __construct($name)
 {
     parent::__construct($name);
     $this->arProperties = array("Title" => "", "Users" => null, "ApproveType" => "all", "Percent" => 100, "OverdueDate" => null, "Name" => null, "Description" => null, "Parameters" => null, "ApproveMinPercent" => 50, "ApproveWaitForAll" => "N", "Comments" => "", "VotedCount" => 0, "TotalCount" => 0, "VotedPercent" => 0, "ApprovedPercent" => 0, "NotApprovedPercent" => 0, "ApprovedCount" => 0, "NotApprovedCount" => 0, "StatusMessage" => "", "SetStatusMessage" => "Y", "LastApprover" => null, "Approvers" => "", "Rejecters" => "", "TimeoutDuration" => 0, "TimeoutDurationType" => "s", "IsTimeout" => 0, "TaskButton1Message" => "", "TaskButton2Message" => "", "CommentLabelMessage" => "", "ShowComment" => "Y");
 }
Пример #3
0
 public function __construct($name)
 {
     parent::__construct($name);
     $this->arProperties = array("Title" => "", "Users" => null, "ApproveType" => "all", "OverdueDate" => null, "Name" => null, "Description" => null, "Parameters" => null, "ReviewedCount" => 0, "TotalCount" => 0, "StatusMessage" => "", "SetStatusMessage" => "Y", "TaskButtonMessage" => "", "TimeoutDuration" => 0, "TimeoutDurationType" => "s", "IsTimeout" => 0, "Comments" => "", "CommentLabelMessage" => "", "ShowComment" => "Y", 'AccessControl' => 'N', "LastReviewer" => null);
 }
Пример #4
0
 public function __construct($name)
 {
     parent::__construct($name);
     $this->arProperties = array("Title" => "", "Users" => null, "ApproveType" => "all", "Percent" => 100, "OverdueDate" => null, "Name" => null, "Description" => null, "Parameters" => null, "ApproveMinPercent" => 50, "ApproveWaitForAll" => "N", "Comments" => "", "VotedCount" => 0, "TotalCount" => 0, "VotedPercent" => 0, "ApprovedPercent" => 0, "NotApprovedPercent" => 0, "ApprovedCount" => 0, "NotApprovedCount" => 0, "StatusMessage" => "", "SetStatusMessage" => "Y", "LastApprover" => null, "LastApproverComment" => '', "Approvers" => "", "Rejecters" => "", "TimeoutDuration" => 0, "TimeoutDurationType" => "s", "IsTimeout" => 0, "TaskButton1Message" => "", "TaskButton2Message" => "", "CommentLabelMessage" => "", "ShowComment" => "Y", 'AccessControl' => 'N');
     $this->SetPropertiesTypes(array('Comments' => array('Type' => 'string'), 'VotedCount' => array('Type' => 'int'), 'TotalCount' => array('Type' => 'int'), 'VotedPercent' => array('Type' => 'int'), 'ApprovedPercent' => array('Type' => 'int'), 'NotApprovedPercent' => array('Type' => 'int'), 'ApprovedCount' => array('Type' => 'int'), 'NotApprovedCount' => array('Type' => 'int'), 'LastApprover' => array('Type' => 'user'), 'LastApproverComment' => array('Type' => 'string'), 'Approvers' => array('Type' => 'string'), 'Rejecters' => array('Type' => 'string'), 'IsTimeout' => array('Type' => 'int')));
 }