diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-13 01:05:11 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-13 01:05:11 +0000 |
commit | ff6791f57652aecfe5d3b43848b0a63f4307fa35 (patch) | |
tree | 8f398dc77052dd0cbcbd056a34a9c0bc7cd3d10e /core/models/incoming_translation.php | |
parent | 4adff591692247debc4089e3a2f1e8fda735d502 (diff) |
Models should be named in adjective_noun form to make pluralizatoin
more intuitive.
Renamed Translations_Incoming to Incoming_Translation to suit.
Diffstat (limited to 'core/models/incoming_translation.php')
-rw-r--r-- | core/models/incoming_translation.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/core/models/incoming_translation.php b/core/models/incoming_translation.php new file mode 100644 index 00000000..fcd79cd4 --- /dev/null +++ b/core/models/incoming_translation.php @@ -0,0 +1,21 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2008 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +class Incoming_Translation_Model extends ORM { +} |