Renaming all the classes for the Printer to match the name of the file
[isso.git] / Printer.php
index e40fc33a8694e4dcd113434efc696aaf03c2c7c6..21f845272e570fcff6ed25f65e9e76bf443bf4d0 100644 (file)
 * @package     ISSO
 */
 
+require_once(ISSO . '/PrinterAbstract.php');
 require_once(ISSO . '/PrinterElement.php');
-require_once(ISSO . '/PrinterBaseElement.php');
-require_once(ISSO . '/PrinterLabelElement.php');
-require_once(ISSO . '/PrinterRootElement.php');
-require_once(ISSO . '/PrinterRootElementPage.php');
-require_once(ISSO . '/PrinterRootElementTable.php');
-require_once(ISSO . '/PrinterRootElementForm.php');
-require_once(ISSO . '/PrinterTableElement.php');
+require_once(ISSO . '/PrinterElementLabel.php');
+require_once(ISSO . '/PrinterElementTable.php');
+require_once(ISSO . '/PrinterRootAbstract.php');
+require_once(ISSO . '/PrinterRootForm.php');
+require_once(ISSO . '/PrinterRootPage.php');
+require_once(ISSO . '/PrinterRootTable.php');
 require_once(ISSO . '/PrinterNavigation.php');
 
 /**