GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
autoload.php
Go to the documentation of this file.
1 <?php
2 // autoload.php @generated by Strauss
3 
4 if ( file_exists( __DIR__ . '/autoload-classmap.php' ) ) {
5  $class_map = include __DIR__ . '/autoload-classmap.php';
6  if ( is_array( $class_map ) ) {
7  spl_autoload_register(
8  function ( $classname ) use ( $class_map ) {
9  if ( isset( $class_map[ $classname ] ) && file_exists( $class_map[ $classname ] ) ) {
10  require_once $class_map[ $classname ];
11  }
12  }
13  );
14  }
15  unset( $class_map );
16 }
17 
18 if ( file_exists( __DIR__ . '/autoload-files.php' ) ) {
19  require_once __DIR__ . '/autoload-files.php';
20 }