delahaye / dlh_googlemaps

Google Maps Extension für Contao
20 stars 26 forks source link

Reflect the changes regarding UUIDs in Contao 3.2 #17

Closed kikmedia closed 10 years ago

kikmedia commented 10 years ago

Ich schreibs mal einfach hier rein - für die Marker-Icons bräuchte es eine Anpassung. Wenn ich es zeitlich schaffe schicke ich noch Code hinterher ...

magicsepp commented 10 years ago

dca:

            'sql'                     => (version_compare(VERSION, '3.2', '<')) ? "varchar(255) NOT NULL default ''" : "binary(16) NULL"

static map:

                        if (version_compare(VERSION, '3.2') >= 0) {
                            $map['elements'][$k]['iconSRC'] = FilesModel::findByUuid($map['elements'][$k]['iconSRC'])->path;
                        } else if (is_numeric($map['elements'][$k]['iconSRC'])) {
                            $map['elements'][$k]['iconSRC'] = FilesModel::findByPk($map['elements'][$k]['iconSRC'])->path;
                        }
``
shadowSRC geht aktuell sowieso nicht (wird nicht mehr angezeigt)

Ich habe die Änderungen mal grob in meinem fork eingebaut frei zum testen...
magicsepp commented 10 years ago

Import von csv (Bsp.: Polylines) geht schief (Uuid Theme?)

delahaye commented 10 years ago

Sollte in 2.0 behoben sein.

kikmedia commented 10 years ago

THX!