Submit
Path:
~
/
home
/
getwphos
/
public_html
/
ccma
/
wp-content
/
plugins
/
curly-core
/
widgets
/
File Content:
load.php
<?php if ( ! function_exists( 'curly_core_load_widget_class' ) ) { /** * Loades widget class file. */ function curly_core_load_widget_class() { include_once 'widget-class.php'; } add_action( 'curly_mkdf_before_options_map', 'curly_core_load_widget_class' ); } if ( ! function_exists( 'curly_core_load_widgets' ) ) { /** * Loades all widgets by going through all folders that are placed directly in widgets folder * and loads load.php file in each. Hooks to curly_mkdf_options_map action */ function curly_core_load_widgets() { if ( curly_core_theme_installed() ) { foreach ( glob( MIKADO_FRAMEWORK_ROOT_DIR . '/modules/widgets/*/load.php' ) as $widget_load ) { include_once $widget_load; } } include_once 'widget-loader.php'; } add_action( 'curly_mkdf_before_options_map', 'curly_core_load_widgets' ); }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
load.php
938 bytes
0644
widget-class.php
6110 bytes
0644
widget-loader.php
372 bytes
0644
N4ST4R_ID | Naxtarrr