| Server IP : 209.16.87.222 / Your IP : 216.73.216.71 Web Server : Apache/2.4.68 (Debian) System : Linux 797b534c095b 6.18.38-Unraid #1 SMP PREEMPT_DYNAMIC Mon Jul 6 15:22:03 PDT 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/uncanny-automator/src/ |
Upload File : |
<?php
namespace Uncanny_Automator;
if ( ! defined( 'AUTOMATOR_DATABASE_VERSION' ) ) {
/**
* Specify Automator version
*/
define( 'AUTOMATOR_DATABASE_VERSION', '4.3' );
}
if ( ! defined( 'AUTOMATOR_DATABASE_VIEWS_VERSION' ) ) {
/**
* Specify Automator version
*/
define( 'AUTOMATOR_DATABASE_VIEWS_VERSION', '4.3' );
}
if ( ! defined( 'AUTOMATOR_REST_API_END_POINT' ) ) {
/**
* Specify Automator Rest API base
*/
define( 'AUTOMATOR_REST_API_END_POINT', 'uap/v2' );
}
if ( ! defined( 'AUTOMATOR_CONFIGURATION_PRIORITY' ) ) {
/**
* Automator Configuration priority
*/
define( 'AUTOMATOR_CONFIGURATION_PRIORITY', 10 );
}
if ( ! defined( 'AUTOMATOR_ACTIONIFY_TRIGGERS_PRIORITY' ) ) {
/**
* Automator trigger load priority
*/
define( 'AUTOMATOR_ACTIONIFY_TRIGGERS_PRIORITY', 20 );
}
if ( ! defined( 'AUTOMATOR_CONFIGURATION_COMPLETE_PRIORITY' ) ) {
/**
* Automator action load priority
*/
define( 'AUTOMATOR_CONFIGURATION_COMPLETE_PRIORITY', 10 );
}
if ( ! defined( 'AUTOMATOR_DEBUG_MODE' ) ) {
/**
* Automator debug mode on/off
*/
define( 'AUTOMATOR_DEBUG_MODE', ! empty( get_option( 'automator_settings_debug_notices_enabled', false ) ) ? true : false );
}
if ( ! defined( 'LOAD_AUTOMATOR' ) ) {
/**
* Load Automator on/off
*/
define( 'LOAD_AUTOMATOR', true );
}
if ( ! defined( 'UA_ABSPATH' ) ) {
/**
* Automator ABSPATH for file includes
*/
define( 'UA_ABSPATH', dirname( AUTOMATOR_BASE_FILE ) . DIRECTORY_SEPARATOR );
}
if ( ! defined( 'UA_DEBUG_LOGS_DIR' ) ) {
/**
* Automator ABSPATH for automator logs directory
*/
define( 'UA_DEBUG_LOGS_DIR', trailingslashit( WP_CONTENT_DIR ) . 'uploads' . DIRECTORY_SEPARATOR . 'automator-logs' . DIRECTORY_SEPARATOR );
}
if ( ! defined( 'AUTOMATOR_FREE_STORE_URL' ) ) {
// URL of store powering the plugin
define( 'AUTOMATOR_FREE_STORE_URL', 'https://automatorplugin.com/' );
}
if ( ! defined( 'AUTOMATOR_API_URL' ) ) {
define( 'AUTOMATOR_API_URL', 'https://api.automatorplugin.com/' );
}
if ( ! defined( 'AUTOMATOR_FREE_ITEM_NAME' ) ) {
// Store download name/title
define( 'AUTOMATOR_FREE_ITEM_NAME', 'Uncanny Automator Free Account' );
}
if ( ! defined( 'AUTOMATOR_FREE_STORE_CONNECT_URL' ) ) {
define( 'AUTOMATOR_FREE_STORE_CONNECT_URL', 'sign-up/' );
}