diff --git a/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst b/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst new file mode 100644 index 000000000..73f1b10a8 --- /dev/null +++ b/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst @@ -0,0 +1,91 @@ +Advanced field value conversion using custom mapping types +========================================================== + +.. sectionauthor:: Jan Sorgalla + +When creating entities, you sometimes have the need to transform field values +before they are saved to the database. In Doctrine you can use Custom Mapping +Types to solve this (see: :ref:`reference-basic_mapping-custom_mapping_types`). + +There are several ways to achieve this: converting the value inside the Type +class, converting the value on the database-level or a combination of both. + +This article describes the third way by implementing the MySQL specific column +type `Point `_. + +The `Point` type is part of the `Spatial extension `_ +of MySQL and enables you to store a single location in a coordinate space by +using x and y coordinates. + +As you might have already guessed, you can use the Point type to store a +longitude/latitude pair to represent a geographic location. + +The entity +---------- + +We create a simple entity which contains a field ``$point`` which should hold +a value object ``Point`` representing the latitude and longitude of the position. + +The entity class: + +.. code-block:: php + + point = $point; + } + + /** + * @return \Geo\Point + */ + public function getPoint() + { + return $this->point; + } + } + +The point class: + +.. code-block:: php + + latitude = $latitude; + $this->longitude = $longitude; + } + + public function getLatitude() + { + return $this->latitude; + } + + public function getLongitude() + { + return $this->longitude; + } + } diff --git a/en/cookbook/custom-mapping-type-value-sql.rst b/en/cookbook/custom-mapping-type-value-sql.rst deleted file mode 100644 index 83d19e968..000000000 --- a/en/cookbook/custom-mapping-type-value-sql.rst +++ /dev/null @@ -1,8 +0,0 @@ -Database-level field value conversion using custom mapping types -================================================================ - -.. sectionauthor:: Jan Sorgalla - -When creating entities, you sometimes have the need to transform field values -before they are saved to the database. In Doctrine you can use Custom Mapping -Types to solve this (see: :ref:`my-reference-label`). diff --git a/en/index.rst b/en/index.rst index ef2638705..b4816c73c 100644 --- a/en/index.rst +++ b/en/index.rst @@ -66,4 +66,5 @@ Cookbook cookbook/strategy-cookbook-introduction cookbook/validation-of-entities cookbook/working-with-datetime - cookbook/mysql-enums \ No newline at end of file + cookbook/mysql-enums + cookbook/advanced-field-value-conversion-using-custom-mapping-types \ No newline at end of file