mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-28 02:20:41 +00:00
move class into namespace Seeddms\Seeddms
This commit is contained in:
parent
f6b3081c5b
commit
83d08d1acc
|
|
@ -18,7 +18,9 @@
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
class SeedDMS_Version { /* {{{ */
|
namespace Seeddms\Seeddms;
|
||||||
|
|
||||||
|
class Version { /* {{{ */
|
||||||
|
|
||||||
const _number = "5.1.43";
|
const _number = "5.1.43";
|
||||||
const _string = "SeedDMS";
|
const _string = "SeedDMS";
|
||||||
|
|
@ -47,7 +49,7 @@ class SeedDMS_Version { /* {{{ */
|
||||||
|
|
||||||
function banner() { /* {{{ */
|
function banner() { /* {{{ */
|
||||||
return self::_string .", ". self::_number;
|
return self::_string .", ". self::_number;
|
||||||
}
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Compare two version
|
* Compare two version
|
||||||
|
|
@ -84,3 +86,4 @@ class SeedDMS_Version { /* {{{ */
|
||||||
|
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
class_alias('Seeddms\Seeddms\Version', 'SeedDMS_Version');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user