From 1f61126d22e9f07582aded5e25c66bbcc0be482b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dario=20B=C3=B6sch?= Date: Fri, 22 May 2015 11:30:54 +0200 Subject: [PATCH] Configuration File added Created CMS_BLOG_CONFIG at moved the feature entries_per_page to this new class. The blog hander inherits from the config class --- examples/demo/modules/blog/cms_blog_config.e | 21 ++++++++++++++++++ .../demo/modules/blog/handler/blog_handler.e | 22 +++++++------------ .../blog/persistence/cms_blog_storage_sql.e | 8 +++---- 3 files changed, 33 insertions(+), 18 deletions(-) create mode 100644 examples/demo/modules/blog/cms_blog_config.e diff --git a/examples/demo/modules/blog/cms_blog_config.e b/examples/demo/modules/blog/cms_blog_config.e new file mode 100644 index 0000000..61a3d87 --- /dev/null +++ b/examples/demo/modules/blog/cms_blog_config.e @@ -0,0 +1,21 @@ +note + description: "Configuration class for the blog module." + author: "Dario Bösch " + date: "$Date: 2015-05-21 14:46:00 +0100$" + revision: "$Revision: 96616 $" class CMS_BLOG_STORAGE_SQL