PluginProbe
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons / 2.2
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons v2.2
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.2, at autoload.php

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