SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/Helpers/Locales/LocaleInfoBRA.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 Brazil; see {@see LocaleInfo}
  19.  */
  20. class LocaleInfoBRA extends LocaleInfo
  21. {
  22. protected $state_list = [
  23. 'AC' => 'Acre',
  24. 'AL' => 'Alagoas',
  25. 'AM' => 'Amazonas',
  26. 'AP' => 'Amapá',
  27. 'BA' => 'Bahia',
  28. 'CE' => 'Ceará',
  29. 'DF' => 'Distrito Federal',
  30. 'ES' => 'Espírito Santo',
  31. 'GO' => 'Goiás',
  32. 'MA' => 'Maranhão',
  33. 'MG' => 'Minas Gerais',
  34. 'MS' => 'Mato Grosso do Sul',
  35. 'MT' => 'Mato Grosso',
  36. 'PA' => 'Pará',
  37. 'PB' => 'Paraíba',
  38. 'PE' => 'Pernambuco',
  39. 'PI' => 'Piauí',
  40. 'PR' => 'Paraná',
  41. 'RJ' => 'Rio de Janeiro',
  42. 'RN' => 'Rio Grande do Norte',
  43. 'RO' => 'Rondônia',
  44. 'RR' => 'Roraima',
  45. 'RS' => 'Rio Grande do Sul',
  46. 'SC' => 'Santa Catarina',
  47. 'SE' => 'Sergipe',
  48. 'SP' => 'São Paulo',
  49. 'TO' => 'Tocantins',
  50. ];
  51. }
  52.