diff options
author | Silvio <silvio@socioambiental.org> | 2013-03-26 11:56:17 -0300 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-03-26 11:56:17 -0300 |
commit | 71131410f1c797f7810b93d74ede8ba4f1a7f9ab (patch) | |
tree | 667c73d2b59e106d102c842b0816b7742e3f199c | |
parent | bc557ec62ec0f9715c37e4fc7912b1a6f38e8cbb (diff) | |
download | gmap_arcgis-71131410f1c797f7810b93d74ede8ba4f1a7f9ab.tar.gz gmap_arcgis-71131410f1c797f7810b93d74ede8ba4f1a7f9ab.tar.bz2 |
Coding style
-rw-r--r-- | gmap_arcgis.module | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/gmap_arcgis.module b/gmap_arcgis.module index 9e458f6..8aa5561 100644 --- a/gmap_arcgis.module +++ b/gmap_arcgis.module @@ -10,7 +10,7 @@ */ /** - * Implementation of hook_perm() + * Implementation of hook_perm(). */ function gmap_arcgis_perm() { return array('access gmap_arcgis content'); @@ -71,7 +71,8 @@ function gmap_arcgis_gmap($op, &$map) { } /** - * Set the title of the marker; + * Set the title of the marker. + * * @param array $marker */ function add_title_on_marker(&$marker) { @@ -113,7 +114,7 @@ function __addMarker(&$map, $data) { } /** - * Implementation of hook_block() + * Implementation of hook_block(). */ function gmap_arcgis_block($op='list', $delta=0, $edit=array()) { global $map; @@ -136,7 +137,12 @@ function gmap_arcgis_block($op='list', $delta=0, $edit=array()) { } } -// TODO: move to isa_gmap_overlays +/** + * Technical note. + * + * @todo + * Move to isa_gmap_overlays + */ function gmap_arcgis_link_nota_tecnica() { return l(t('Sources'), 'quem-somos', array('fragment' => 'tabset-tab-3', 'external' => TRUE)); } |