@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorEditEnginePageState
4 extends Phobject {
5
6 private $isCreate;
7 private $isSubmit;
8 private $isError;
9 private $isSave;
10
11 public function setIsCreate($is_create) {
12 $this->isCreate = $is_create;
13 return $this;
14 }
15
16 public function getIsCreate() {
17 return $this->isCreate;
18 }
19
20 public function setIsSubmit($is_submit) {
21 $this->isSubmit = $is_submit;
22 return $this;
23 }
24
25 public function getIsSubmit() {
26 return $this->isSubmit;
27 }
28
29 public function setIsError($is_error) {
30 $this->isError = $is_error;
31 return $this;
32 }
33
34 public function getIsError() {
35 return $this->isError;
36 }
37
38 public function setIsSave($is_save) {
39 $this->isSave = $is_save;
40 return $this;
41 }
42
43 public function getIsSave() {
44 return $this->isSave;
45 }
46
47}