diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-12-16 15:34:55 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-12-16 16:16:22 +0100 |
commit | 26100a6dfbd55d12de689d2b2e865d058e58046f (patch) | |
tree | 0c62844eb8d53b13c3bba7936e9e67398e4a922b /lib/public | |
parent | 5b9c453071fe900529cd26b88fbc681d8b153b43 (diff) | |
download | nextcloud-server-26100a6dfbd55d12de689d2b2e865d058e58046f.tar.gz nextcloud-server-26100a6dfbd55d12de689d2b2e865d058e58046f.zip |
Move timezone logic out of server.php
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/idatetimezone.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/public/idatetimezone.php b/lib/public/idatetimezone.php new file mode 100644 index 00000000000..fb4c89538d5 --- /dev/null +++ b/lib/public/idatetimezone.php @@ -0,0 +1,21 @@ +<?php +/** + * ownCloud + * + * @author Joas Schilling + * @copyright 2014 Joas Schilling nickvergessen@owncloud.com + * + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP; + + +interface IDateTimeZone { + /** + * @return \DateTimeZone + */ + public function getTimeZone(); +} |