コード例 #1
0
ファイル: BaseModel.php プロジェクト: Redpill-Linpro/gamine
 protected function _extractToDataArray($removeUnchanged = true)
 {
     $result = array();
     if ($this->_gamineservice) {
         $mapped_properties = $this->_gamineservice->getMappedProperties($this->entity_key);
     } else {
         $description = \RedpillLinpro\GamineBundle\Gamine::describeClass(get_called_class());
         $mapped_properties = $description['properties'];
     }
     foreach ($mapped_properties as $property => $mappings) {
         if (array_key_exists('relates', $mappings) && !array_key_exists('column', $mappings)) {
             continue;
         }
         $this->_extractDataArrayProperty($property, $mappings, $result, $removeUnchanged);
     }
     return $result;
 }