SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/Helpers/Locales/LocaleInfoGTM.php

  1. <?php
  2. /*
  3.  * Copyright (C) 2017 Karmabunny Pty Ltd.
  4.  *
  5.  * This file is a part of SproutCMS.
  6.  *
  7.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation, either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * For more information, visit <http://getsproutcms.com>.
  12.  */
  13.  
  14. namespace Sprout\Helpers\Locales;
  15.  
  16.  
  17. /**
  18.  * Locale info for Guatemala; see {@see LocaleInfo}
  19.  */
  20. class LocaleInfoGTM extends LocaleInfo
  21. {
  22. protected $state_list = [
  23. 'AV' => 'Alta Verapaz',
  24. 'BV' => 'Baja Verapaz',
  25. 'CM' => 'Chimaltenango',
  26. 'CQ' => 'Chiquimula',
  27. 'ES' => 'Escuintla',
  28. 'GU' => 'Guatemala',
  29. 'HU' => 'Huehuetenango',
  30. 'IZ' => 'Izabal',
  31. 'JA' => 'Jalapa',
  32. 'JU' => 'Jutiapa',
  33. 'PE' => 'Petén',
  34. 'PR' => 'El Progreso',
  35. 'QC' => 'Quiché',
  36. 'QZ' => 'Quetzaltenango',
  37. 'RE' => 'Retalhuleu',
  38. 'SA' => 'Sacatepéquez',
  39. 'SM' => 'San Marcos',
  40. 'SO' => 'Sololá',
  41. 'SR' => 'Santa Rosa',
  42. 'SU' => 'Suchitepéquez',
  43. 'TO' => 'Totonicapán',
  44. 'ZA' => 'Zacapa',
  45. ];
  46. }
  47.