예제 #1
0
파일: MODx.php 프로젝트: bagi091/DocLister
 /**
  * Пометить все поля как распакованные
  * @return $this
  */
 public function markAllDecode()
 {
     $this->_decodedFields->clear();
     foreach ($this->jsonFields as $field) {
         $this->markAsDecode($field);
     }
     return $this;
 }