Appendix H. Code after Controller Rearrangement

articles.php 1 <?php 2 require "includes/setup.php"; 3 4 /* DEPENDENCY */ 5 6 $db = new Database($db_host, $db_user, $db_pass); 7 $articles_gateway = new ArticlesGateway($db); 8 $users_gateway = new UsersGateway($db); 9 $article_transactions = new ArticleTransactions( 10 $articles_gateway, 11 $users_gateway 12 ); 13 $response = new \Mlaphp\Response('/path/to/app/views'); 14 15 /* CONTROLLER */ 16 17 $user_id = $user->getId(); 18 19 $id = isset($_GET['id']) ? $_GET['id'] : 0; 20 if ($id) { 21 $article_transactions->updateExistingArticle($user_id, $_POST); 22 } else { 23 $article_transactions->submitNewArticle($user_id, $_POST); 24 } 25 26 $response->setView('articles.html.php'); 27 $response->setVars(array( ...

Get Modernizing Legacy Applications in PHP now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.