/home/vianto5/cititower.mx/wp-content/plugins/wpml-wpforms/vendor/otgs/icons
Edit: /home/vianto5/cititower.mx/wp-content/plugins/wpml-wpforms/vendor/otgs/icons/loader.php (1565B)
$vendor_root_url . '/otgs/icons',
'path' => dirname( __FILE__ )
);
if ( ! has_action( 'init', 'otgs_icons_register' ) ) {
add_action( 'init', 'otgs_icons_register' );
}
if ( ! function_exists( 'otgs_icons_register' ) ) {
function otgs_icons_register() {
global $otg_icons_versions;
$latest = 0;
foreach ( $otg_icons_versions as $version => $root_utl ) {
if ( $version > $latest ) {
$latest = $version;
}
}
require_once( $otg_icons_versions[ $latest ]['path'] . '/register.php' );
otgs_icons_register_assets( $otg_icons_versions[ $latest ], $latest );
}
}