SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/Helpers/Locales/LocaleInfoIRL.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 Ireland; see {@see LocaleInfo}
  19.  */
  20. class LocaleInfoIRL extends LocaleInfo
  21. {
  22. protected $state_list = [
  23. 'CE' => 'Clare',
  24. 'CN' => 'Cavan',
  25. 'CO' => 'Cork',
  26. 'CW' => 'Carlow',
  27. 'D' => 'Dublin',
  28. 'DL' => 'Donegal',
  29. 'G' => 'Galway',
  30. 'KE' => 'Kildare',
  31. 'KK' => 'Kilkenny',
  32. 'KY' => 'Kerry',
  33. 'LD' => 'Longford',
  34. 'LH' => 'Louth',
  35. 'LK' => 'Limerick',
  36. 'LM' => 'Leitrim',
  37. 'LS' => 'Laois',
  38. 'MH' => 'Meath',
  39. 'MN' => 'Monaghan',
  40. 'MO' => 'Mayo',
  41. 'OY' => 'Offaly',
  42. 'RN' => 'Roscommon',
  43. 'SO' => 'Sligo',
  44. 'TA' => 'Tipperary',
  45. 'WD' => 'Waterford',
  46. 'WH' => 'Westmeath',
  47. 'WW' => 'Wicklow',
  48. 'WX' => 'Wexford',
  49. ];
  50. }
  51.