1 | <?php |
||
22 | class DomainFactory |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * @param string $domain_fcqn [required] Fully Qualified Class Name for the Domain class |
||
27 | * @param array $arguments [required] array of arguments to be passed to the Domain class constructor. |
||
28 | * must include the following two elements as a minimum: |
||
29 | * array( |
||
30 | * $plugin_file, // full server path to the addon main file (__FILE__) |
||
31 | * $version, // standard version string like #.#.# |
||
32 | * ) |
||
33 | * @return mixed |
||
34 | * @throws InvalidArgumentException |
||
35 | * @throws InvalidDataTypeException |
||
36 | * @throws InvalidInterfaceException |
||
37 | */ |
||
38 | public static function create($domain_fcqn = '', array $arguments) |
||
51 | |||
52 | } |
||
53 | // Location: DomainFactory.php |
||
54 |