-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
56 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,67 @@ | ||
<?php | ||
$orase=[ | ||
createOras("AGNITA", [ | ||
createLoc("AGNITA", "oras"), | ||
createLoc("Coveș", "sat"), | ||
createLoc("Ruja", "sat"), | ||
]), | ||
|
||
createOras("AVRIG", [ | ||
createLoc("AVRIG", "oras", [ | ||
createLoc("Bradu", "sat"), | ||
createLoc("Glâmboaca", "sat"), | ||
createLoc("Mârșa", "sat"), | ||
createLoc("Săcădate", "sat"), | ||
|
||
]), | ||
$orase = [ | ||
createOras("AGNITA", [ | ||
createLoc("AGNITA", "oras"), | ||
createLoc("Coveș", "sat"), | ||
createLoc("Ruja", "sat"), | ||
]), | ||
|
||
]), | ||
createOras("AVRIG", [ | ||
createLoc("AVRIG", "oras", [ | ||
createLoc("Bradu", "sat"), | ||
createLoc("Glâmboaca", "sat"), | ||
createLoc("Mârșa", "sat"), | ||
createLoc("Săcădate", "sat"), | ||
]), | ||
]), | ||
|
||
createOras("CISNĂDIE", [ | ||
createLoc("CISNĂDIE", "oras"), | ||
createLoc("Cisnădioara", "sat"), | ||
]), | ||
createOras("CISNĂDIE", [ | ||
createLoc("CISNĂDIE", "oras"), | ||
createLoc("Cisnădioara", "sat"), | ||
]), | ||
|
||
createOras("COPȘA MICĂ", [ | ||
createLoc("COPȘA MICĂ", "oras"), | ||
]), | ||
|
||
createOras("DUMBRĂVENI", [ | ||
createLoc("DUMBRĂVENI", "oras"), | ||
createLoc("Ernea", "sat"), | ||
createLoc("Șaroș pe Târnave", "sat"), | ||
]), | ||
|
||
createOras("MIERCUREA SIBIULUI", [ | ||
createLoc("MIERCUREA SIBIULUI", "oras", [ | ||
createLoc("Apoldu de Sus", "sat"), | ||
createLoc("Dobârca", "sat"), | ||
|
||
]), | ||
createOras("COPȘA MICĂ", [ | ||
createLoc("COPȘA MICĂ", "oras"), | ||
]), | ||
|
||
]), | ||
|
||
createOras("OCNA SIBIULUI", [ | ||
createLoc("OCNA SIBIULUI", "oras", [ | ||
createLoc("Topârcea", "sat"), | ||
|
||
]), | ||
|
||
createOras("SĂLIȘTE", [ | ||
createLoc("SĂLIȘTE", "oras", [ | ||
createLoc("Aciliu", "sat"), | ||
createLoc("Amnaș", "sat"), | ||
createLoc("Fântânele", "sat"), | ||
createLoc("Galeș", "sat"), | ||
createLoc("Mag", "sat"), | ||
createLoc("Săcel", "sat"), | ||
createLoc("Sibiel", "sat"), | ||
createLoc("Vale", "sat"), | ||
|
||
]), | ||
createOras("DUMBRĂVENI", [ | ||
createLoc("DUMBRĂVENI", "oras"), | ||
createLoc("Ernea", "sat"), | ||
createLoc("Șaroș pe Târnave", "sat"), | ||
]), | ||
|
||
]), | ||
|
||
createOras("TĂLMACIU", [ | ||
createLoc("TĂLMACIU", "oras", [ | ||
createLoc("Colonia Tălmaciu", "sat"), | ||
createLoc("Tălmăcel", "sat"), | ||
|
||
]), | ||
createOras("MIERCUREA SIBIULUI", [ | ||
createLoc("MIERCUREA SIBIULUI", "oras", [ | ||
createLoc("Apoldu de Sus", "sat"), | ||
createLoc("Dobârca", "sat"), | ||
]), | ||
]), | ||
|
||
]), | ||
|
||
createOras("OCNA SIBIULUI", [ | ||
createLoc("OCNA SIBIULUI", "oras", [ | ||
createLoc("Topârcea", "sat"), | ||
]), | ||
]), | ||
|
||
|
||
createOras("SĂLIȘTE", [ | ||
createLoc("SĂLIȘTE", "oras", [ | ||
createLoc("Aciliu", "sat"), | ||
createLoc("Amnaș", "sat"), | ||
createLoc("Fântânele", "sat"), | ||
createLoc("Galeș", "sat"), | ||
createLoc("Mag", "sat"), | ||
createLoc("Săcel", "sat"), | ||
createLoc("Sibiel", "sat"), | ||
createLoc("Vale", "sat"), | ||
]), | ||
]), | ||
|
||
createOras("TĂLMACIU", [ | ||
createLoc("TĂLMACIU", "oras", [ | ||
createLoc("Colonia Tălmaciu", "sat"), | ||
createLoc("Tălmăcel", "sat"), | ||
]), | ||
]), | ||
]; | ||
|
||
?> |