コード例 #1
0
ファイル: MODx.php プロジェクト: bagi091/DocLister
 /**
  * Пометить все поля как распакованные
  * @return $this
  */
 public function markAllDecode()
 {
     $this->_decodedFields->clear();
     foreach ($this->jsonFields as $field) {
         $this->markAsDecode($field);
     }
     return $this;
 }