Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/middletvnew/wp-content/plugins/easy-google-fonts/src/includes/ |
Upload File : |
<?php
/**
* Plugin Setup
*
* Contains information about the file structure of
* the plugin along with any setup logic.
*
* @package easy-google-fonts
* @author Sunny Johal - Titanium Themes <support@titaniumthemes.com>
*/
namespace EGF\Setup;
/**
* Get Plugin File URL
*
* Gets the URL to the /src/ directory
* in the plugin directory with the
* trailing slash.
*
* @return string URL to the src directory with the trailing slash.
* @since 2.0.0
*/
function get_plugin_src_url() {
return trailingslashit( plugins_url( 'easy-google-fonts/src' ) );
}
/**
* Get Plugin File Path
*
* Gets the file path to the /src/ directory
* in the plugin directory.
*
* @return string Filepath to the src directory.
* @since 2.0.0
*/
function get_plugin_src_file_path() {
return plugin_dir_path( __DIR__ );
}