Skip to content

josuejcalazans/doctrine-point-type

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Versions:

Version PHP Version
1.* 7.0
2.* 7.1 or higher

How to use

First, composer install:

composer require josueeek/doctrine-point-type

After, add in your bootstrap:

use Doctrine\DBAL\Types\Type;

$em = YourEntityManager();

Type::addType('point', 'Josue\PointType');

// in case silex :)
$em->getConnection()->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'point');

Or add it in your app/config yml files

doctrine:
    dbal:
        types:
            point: Josue\PointType
        default_connection: default
        connections:
            default:
                driver: pdo_mysql
                host: '%database_host%'
                port: '%database_port%'
                dbname: '%database_name%'
                user: '%database_user%'
                password: '%database_password%'
                charset: UTF8
                mapping_types:
                    point: point

Exclusive to symfony 4

In your controller, below the namespace, call the file

namespace App\Controller;

use Josue\Point;
use App\Entity\GeoLocation;

In your entity create a point type file

   *  
   * @ORM\Column(name="GeoLocation", type="point")
   */
   private $GeoLocation;
   
   public function getGeoLocation()
   {
       return $this->GeoLocation;
   }
   public function setGeoLocation($GeoLocation)
   {
      $this->GeoLocation = $GeoLocation;
      return $this;
   }

You should now configure your file doctrine.yaml

    dbal:
        types:
            point: Josue\PointType
        mapping_types:
            point: point

Now it's just enjoy, and good young work!!!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages