Open the tshirtshop.css file from the styles folder, and add the following style definition:
.menu {
font-size: 93%;
}
How It Works: Setting Up the Orders Administration Page
There isn??™t anything to test at this point, because we haven??™t created any new significant functionality.We only
prepared the ground for the implementing the orders and order details administration features.We also added
a style to tshirtshop.css that will make the administration menu fit nicely on its page. Note that, at the
moment, you get an error if you try loading admin.php, because we referenced a file that doesn??™t exist yet??”
business/orders.php. You??™ll create this file in the next exercise.
Displaying Pending Orders
In the next few pages, you??™ll implement the admin_orders componentized template and its
supporting data tier and business tier functionality. admin_orders is the componentized template
that allows the administrator to view the orders that have been placed on the web site.
Because the list of orders will become very long in time, it is important to have a few well chosen
filtering options.
The administrator will be able to select the orders using the following criteria:
??? Show the most recent orders.
??? Show orders that took place in a certain period of time.
??? Show orders with a specified status value.
CHAPTER 14 ?– ACCEPTING CUSTOMER ORDERS 446
We??™ll create these features in the following exercise.
Pages:
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564