PluginProbe
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons / 2.3.6
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons v2.3.6
trunk 1.2.2 2.0 2.1 2.2 2.3 2.3.1 2.3.2 2.3.3 2.3.4 2.3.6
support-chat / autoload.php

autoload.php in WP Click to Chat – Email, Live Chat, Call & Book Now Buttons 2.3.6, at autoload.php

12 lines 417 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit;
3 spl_autoload_register('wp_saio_autoloader');
4 function wp_saio_autoloader($class_name)
5 {
6 if (false !== strpos($class_name, 'WpSaio') ) {
7 $classes_dir = WP_SAIO_DIR . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR;
8 $class_file = str_replace('_', DIRECTORY_SEPARATOR, $class_name) . '.class.php';
9 require_once $classes_dir . $class_file;
10 }
11 }
12