コード例 #1
0
ファイル: DaoMap.php プロジェクト: larryu/magento-b2b
 /**
  * Commit the data map to the internal hash table
  */
 public static function commit()
 {
     // Copy the temp data into the live properties
     self::$map[strtolower(self::$_activeClassRaw)] = self::$_tempMap[strtolower(self::$_activeClassRaw)];
     // Reset the temp variables
     self::$_tempMap = array();
 }