├── style.css ├── .htaccess ├── autoload.php ├── images ├── image00.jpg ├── image01.png ├── image02.png ├── image03.png ├── image04.png ├── image05.png ├── image06.png ├── image07.jpg ├── image08.png ├── image09.png ├── image10.png ├── image11.jpg ├── image12.png ├── image13.png ├── welcome-page.jpg ├── kumbia-url-anatomy.png ├── kumbiaphp-greetings.png ├── test-welcome-message.jpg ├── successful-installation.jpg ├── kumbia-url-anatomy-params.png ├── kumbiaphp-greetings-date.png ├── kumbiaphp-greetings-goodbye.png ├── incorrect-number-of-parameters.jpg ├── incorrect-number-of-parameters.png ├── kumbiaphp-greetings-hello-cachi.png ├── kmbiaphp-blog-example-using-call.jpg └── bypass-incorrect-number-of-parameters.jpg ├── crowdin.yml ├── composer.json ├── .gitignore ├── es ├── toc.yaml ├── readme.md ├── model.md ├── scaffold.md ├── front-controller.md ├── to-install.md ├── console.md ├── crud.md ├── installing-kumbiaphp-apache-nginx.md ├── preface.md ├── configuration.md ├── first-app.md ├── mvc.md ├── appendix.md └── controller.md ├── en ├── readme.md ├── model.md ├── scaffold.md ├── to-install.md ├── front-controller.md ├── mvc.md ├── console.md ├── crud.md ├── preface.md ├── configuration.md ├── installing-kumbiaphp-apache-nginx.md ├── first-app.md ├── controller.md ├── appendix.md ├── parent-class.md └── index.md ├── .github └── FUNDING.yml ├── Markdown.php ├── index.php ├── toc.php ├── readme.md └── prism.css /style.css: -------------------------------------------------------------------------------- 1 | body{margin:auto;width:80%} -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteRule ^(.+\.md)$ index.php?file=$1 [L] -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- 1 | $id); 8 | return $array; 9 | } 10 | 11 | 12 | 13 | static public function generateId($title){ 14 | return str_replace(' ', '-', 15 | str_replace(array('(', ')', '?', '¿'), '', strtolower($title)) 16 | ); 17 | } 18 | 19 | protected function identifyLink($Excerpt){ 20 | $r = parent::identifyLink($Excerpt); 21 | if(isset($r['element']['name']) && $r['element']['name'] == 'img'){ 22 | $r['element']['attributes']['src'] = '/doc/'.$r['element']['attributes']['src']; 23 | } 24 | return $r; 25 | } 26 | 27 | } -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 8 | 9 |
10 | 11 | 12 | 13 | . 14 | 15 |