HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/tco-email-forms/email-integration/functions/framework/init.php
<?php

// =============================================================================
// EMAIL-INTEGRATION/FUNCTIONS/FRAMEWORK/INIT.PHP
// -----------------------------------------------------------------------------
// The view-handler.php file is so the plugin and providers can easily load
// view files that are injected with shared data from the plugin.
//
// The options-handler.php file is for saving and validating options. It allows
// the providers to simply "declare" what they want to use, and the plugin will
// handle their storage and initialization.
//
// The plugin-base.php file performs essential bootstrap like hooks that will
// always be used (i.e. loading the config file, instantiating any declared
// widgets, instantiating any declared shortcodes, et cetera). It is what
// powers the plugin's config file.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Require Files
// =============================================================================

// Require Files
// =============================================================================

require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/includes/cs/helpers.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/includes/cs/section.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/includes/cs/column.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/includes/cs/row.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/view-handler.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/options-handler.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/plugin-base.php';
require_once TCO_EMAIL_INTEGRATION_PATH . '/functions/framework/setup.php';