From 2b02e65a452b9ab911d3a3c3072302f6e39dfec7 Mon Sep 17 00:00:00 2001 From: Nik Okuntseff Date: Mon, 5 Nov 2018 13:00:46 +0000 Subject: [PATCH] Renamed ttExportHelper2 class to ttOrgExportHelper. --- ...tExportHelper2.class.php => ttOrgExportHelper.class.php} | 6 +++--- export.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) rename WEB-INF/lib/{ttExportHelper2.class.php => ttOrgExportHelper.class.php} (99%) diff --git a/WEB-INF/lib/ttExportHelper2.class.php b/WEB-INF/lib/ttOrgExportHelper.class.php similarity index 99% rename from WEB-INF/lib/ttExportHelper2.class.php rename to WEB-INF/lib/ttOrgExportHelper.class.php index a179769e..a6eb6af8 100644 --- a/WEB-INF/lib/ttExportHelper2.class.php +++ b/WEB-INF/lib/ttOrgExportHelper.class.php @@ -29,10 +29,10 @@ import('ttTeamHelper'); import('ttTimeHelper'); -// ttExportHelper2 - this class is a future replacement for ttExportHelper. +// ttOrgExportHelper - this class is a future replacement for ttExportHelper. // Currently, it is work in progress. -// When done, it should handle exporting of complex groups containing other groups. -class ttExportHelper2 { +// When done, it should handle export of organizations containing multiple groups. +class ttOrgExportHelper { // TODO: we need a constructor... var $fileName = null; // Name of the file with data. diff --git a/export.php b/export.php index b194adfb..3d617814 100644 --- a/export.php +++ b/export.php @@ -28,7 +28,7 @@ require_once('initialize.php'); import('ttExportHelper'); -import('ttExportHelper2'); +import('ttOrgExportHelper'); import('form.Form'); // Access check. @@ -58,7 +58,7 @@ if ($request->isPost()) { } if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) { - $exportHelper = new ttExportHelper2(); + $exportHelper = new ttOrgExportHelper(); } else { $exportHelper = new ttExportHelper(); } -- 2.20.1