This file contains hidden or 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
#--- Ubuntu 13.10 Saucy Salamander | |
#- | |
#- Basic packages i usually install | |
# | |
# Update and Upgrade | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Graphics |
This file contains hidden or 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
<?php | |
$slugConstraints = '[\w_-]+'; | |
$pagenumberChild = array( | |
'type' => 'segment', | |
'options' => array( | |
'route' => '/page/:page', | |
'constraints' => array( | |
'page' => '\d+' |
NewerOlder