AnchoredDotNotation.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. * This file is part of Mustache.php.
  4. *
  5. * (c) 2010-2017 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. class AnchoredDotNotation
  11. {
  12. public $genres = array(
  13. array(
  14. 'name' => 'Punk',
  15. 'subgenres' => array(
  16. array(
  17. 'name' => 'Hardcore',
  18. 'subgenres' => array(
  19. array(
  20. 'name' => 'First wave of black metal',
  21. 'subgenres' => array(
  22. array('name' => 'Norwegian black metal'),
  23. array(
  24. 'name' => 'Death metal',
  25. 'subgenres' => array(
  26. array(
  27. 'name' => 'Swedish death metal',
  28. 'subgenres' => array(
  29. array('name' => 'New wave of American metal'),
  30. ),
  31. ),
  32. ),
  33. ),
  34. ),
  35. ),
  36. array(
  37. 'name' => 'Thrash metal',
  38. 'subgenres' => array(
  39. array('name' => 'Grindcore'),
  40. array(
  41. 'name' => 'Metalcore',
  42. 'subgenres' => array(
  43. array('name' => 'Nu metal'),
  44. ),
  45. ),
  46. ),
  47. ),
  48. ),
  49. ),
  50. ),
  51. ),
  52. );
  53. }