Listing 6.8. | |
| ROZDZIAŁ: | 6. Translacja adresów URL |
| TXT: | listing-06-08.txt |
class LigiController extends Controller
{
public function preActions()
{
$tmp = string2HArray(file_get_contents('../scripts/dane/ligi.txt'));
$this->dane = $tmp['items'];
$this->slugi = array();
foreach ($this->dane as $liga) {
$this->slugi[] = $liga[1];
}
$this->set('menu', $this->dane);
}
}