X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttOrgHelper.class.php;h=4a322f07d6773a6470d0ace16429a1f7b0d37809;hb=32173f5d1d4c523d9f3223489651049cafad9a5e;hp=d93e2591649aa57480199dc6a74b37a9c314c8b0;hpb=3adb3c8c419ca1a01edac5fa62d5f88898415bfa;p=timetracker.git diff --git a/WEB-INF/lib/ttOrgHelper.class.php b/WEB-INF/lib/ttOrgHelper.class.php index d93e2591..4a322f07 100644 --- a/WEB-INF/lib/ttOrgHelper.class.php +++ b/WEB-INF/lib/ttOrgHelper.class.php @@ -82,4 +82,13 @@ class ttOrgHelper { } return false; } + + // deleteOrg deletes data for the entire organization from database permanently. + static function deleteOrg() { + return false; // Work in progress, currently not implemented. + + // We shall do it in a straightforward way by a delete operation from all tables by org_id. + // However, at this time not all tables have org_id. + // So, we need to add the field as we write code here. + } }