TYPO3 CMS  TYPO3_6-2
VersionState.php
Go to the documentation of this file.
1 <?php
3 
23 
24  const __default = self::DEFAULT_STATE;
25 
33 
38  const DEFAULT_STATE = 0;
39 
46  const NEW_PLACEHOLDER = 1;
47 
54  const DELETE_PLACEHOLDER = 2;
55 
71  const MOVE_PLACEHOLDER = 3;
72  const MOVE_POINTER = 4;
73 
77  public function indicatesPlaceholder() {
78  return (int)$this->__toString() > self::DEFAULT_STATE;
79  }
80 }