generated from figuren-theater/new-ft-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft-stubs.php
53 lines (44 loc) · 1.35 KB
/
ft-stubs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Constants used on the figuren-theater/ft-platform
*/
//
// figuren-theater/ft-platform !
//
namespace Figuren_Theater {
/**
* Get Version number of ft-platform
*
* Returns a string with the semver formatted version number, which gets set automatically on each Release (via github).
*
* @since 3.2 Deprecated former FT_PLATTFORM_VERSION constant in favor of this function.
*
* @return string String with the semver formatted version number.
*/
function get_platform_version() : string {}
}
namespace {
//
// figuren-theater/ft-platform !
//
// ./wp-config.php
define( 'FT_ROOT_DIR', __DIR__ );
define( 'FT_WP_DIR', '/wp' );
// ./wp-config.default.php
define( 'FT_VENDOR_DIR', FT_ROOT_DIR . '/vendor' );
define( 'FT_VENDOR_URL', 'https://localhost/content/v' ); // Symlinked to DOCROOT/vendor.
// ./wp-config.{{ENV}}.php
define( 'FT_MAINTENANCE_MODE', false );
//
// figuren-theater/ft-maitenance !
//
// ./content/mu-plugins/FT/ft-maintenance/inc/mode/namespace.php
// ./content/mu-plugins/FT/ft-maintenance/inc/mode/error-template.php
// ./content/db-error.php
// ./content/maintenance.php
// ./content/php-error.php
define( 'FT_ERROR_MAIL_TO', 'f.t web-Crew <[email protected]>' );
define( 'FT_ERROR_MAIL_FROM', '[email protected]' );
define( 'FT_ERROR_MAIL_INTERVAL', 300 );
define( 'FT_ERROR_SUPPRESS_EMAIL', true );
}