From d27364a3d92a9c82e162f8069acce3f4b822ae54 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 5 Apr 2015 23:19:45 +0200 Subject: [PATCH] Renamed classes. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- inc/classes/main/commands/{web => html}/.htaccess | 0 inc/classes/main/commands/{web/class_ => html/class_Html} | 6 +++--- .../class_HtmlConfirmCommand.php} | 0 .../class_HtmlDoFormCommand.php} | 0 .../class_HtmlHomeCommand.php} | 0 .../class_HtmlLoginAreaCommand.php} | 0 .../class_HtmlLoginCommand.php} | 0 .../class_HtmlLoginFailedCommand.php} | 0 .../class_HtmlLogoutCommand.php} | 0 .../class_HtmlLogoutDoneCommand.php} | 0 .../class_HtmlProblemCommand.php} | 0 .../class_HtmlRegisterCommand.php} | 0 .../class_HtmlResendLinkCommand.php} | 0 .../class_HtmlStatusCommand.php} | 0 14 files changed, 3 insertions(+), 3 deletions(-) rename inc/classes/main/commands/{web => html}/.htaccess (100%) rename inc/classes/main/commands/{web/class_ => html/class_Html} (91%) rename inc/classes/main/commands/{web/class_WebConfirmCommand.php => html/class_HtmlConfirmCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebDoFormCommand.php => html/class_HtmlDoFormCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebHomeCommand.php => html/class_HtmlHomeCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebLoginAreaCommand.php => html/class_HtmlLoginAreaCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebLoginCommand.php => html/class_HtmlLoginCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebLoginFailedCommand.php => html/class_HtmlLoginFailedCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebLogoutCommand.php => html/class_HtmlLogoutCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebLogoutDoneCommand.php => html/class_HtmlLogoutDoneCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebProblemCommand.php => html/class_HtmlProblemCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebRegisterCommand.php => html/class_HtmlRegisterCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebResendLinkCommand.php => html/class_HtmlResendLinkCommand.php} (100%) rename inc/classes/main/commands/{web/class_WebStatusCommand.php => html/class_HtmlStatusCommand.php} (100%) diff --git a/inc/classes/main/commands/web/.htaccess b/inc/classes/main/commands/html/.htaccess similarity index 100% rename from inc/classes/main/commands/web/.htaccess rename to inc/classes/main/commands/html/.htaccess diff --git a/inc/classes/main/commands/web/class_ b/inc/classes/main/commands/html/class_Html similarity index 91% rename from inc/classes/main/commands/web/class_ rename to inc/classes/main/commands/html/class_Html index 1dc5ddac..00341240 100644 --- a/inc/classes/main/commands/web/class_ +++ b/inc/classes/main/commands/html/class_Html @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class Web???Command extends BaseCommand implements Commandable { +class Html???Command extends BaseCommand implements Commandable { /** * Protected constructor * @@ -38,9 +38,9 @@ class Web???Command extends BaseCommand implements Commandable { * @param $resolverInstance An instance of a command resolver class * @return $commandInstance An instance a prepared command class */ - public final static function createWeb???Command (CommandResolver $resolverInstance) { + public final static function createHtml???Command (CommandResolver $resolverInstance) { // Get new instance - $commandInstance = new Web???Command(); + $commandInstance = new Html???Command(); // Set the application instance $commandInstance->setResolverInstance($resolverInstance); diff --git a/inc/classes/main/commands/web/class_WebConfirmCommand.php b/inc/classes/main/commands/html/class_HtmlConfirmCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebConfirmCommand.php rename to inc/classes/main/commands/html/class_HtmlConfirmCommand.php diff --git a/inc/classes/main/commands/web/class_WebDoFormCommand.php b/inc/classes/main/commands/html/class_HtmlDoFormCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebDoFormCommand.php rename to inc/classes/main/commands/html/class_HtmlDoFormCommand.php diff --git a/inc/classes/main/commands/web/class_WebHomeCommand.php b/inc/classes/main/commands/html/class_HtmlHomeCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebHomeCommand.php rename to inc/classes/main/commands/html/class_HtmlHomeCommand.php diff --git a/inc/classes/main/commands/web/class_WebLoginAreaCommand.php b/inc/classes/main/commands/html/class_HtmlLoginAreaCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebLoginAreaCommand.php rename to inc/classes/main/commands/html/class_HtmlLoginAreaCommand.php diff --git a/inc/classes/main/commands/web/class_WebLoginCommand.php b/inc/classes/main/commands/html/class_HtmlLoginCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebLoginCommand.php rename to inc/classes/main/commands/html/class_HtmlLoginCommand.php diff --git a/inc/classes/main/commands/web/class_WebLoginFailedCommand.php b/inc/classes/main/commands/html/class_HtmlLoginFailedCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebLoginFailedCommand.php rename to inc/classes/main/commands/html/class_HtmlLoginFailedCommand.php diff --git a/inc/classes/main/commands/web/class_WebLogoutCommand.php b/inc/classes/main/commands/html/class_HtmlLogoutCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebLogoutCommand.php rename to inc/classes/main/commands/html/class_HtmlLogoutCommand.php diff --git a/inc/classes/main/commands/web/class_WebLogoutDoneCommand.php b/inc/classes/main/commands/html/class_HtmlLogoutDoneCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebLogoutDoneCommand.php rename to inc/classes/main/commands/html/class_HtmlLogoutDoneCommand.php diff --git a/inc/classes/main/commands/web/class_WebProblemCommand.php b/inc/classes/main/commands/html/class_HtmlProblemCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebProblemCommand.php rename to inc/classes/main/commands/html/class_HtmlProblemCommand.php diff --git a/inc/classes/main/commands/web/class_WebRegisterCommand.php b/inc/classes/main/commands/html/class_HtmlRegisterCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebRegisterCommand.php rename to inc/classes/main/commands/html/class_HtmlRegisterCommand.php diff --git a/inc/classes/main/commands/web/class_WebResendLinkCommand.php b/inc/classes/main/commands/html/class_HtmlResendLinkCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebResendLinkCommand.php rename to inc/classes/main/commands/html/class_HtmlResendLinkCommand.php diff --git a/inc/classes/main/commands/web/class_WebStatusCommand.php b/inc/classes/main/commands/html/class_HtmlStatusCommand.php similarity index 100% rename from inc/classes/main/commands/web/class_WebStatusCommand.php rename to inc/classes/main/commands/html/class_HtmlStatusCommand.php -- 2.30.2