| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/stirizo/wp-content/plugins/edumodo-core/elements/ |
Upload File : |
<?php
namespace Elementor;
function edumodo_elementor_init(){
Plugin::instance()->elements_manager->add_category(
'edumodo',
[
'title' => __('Edumodo Elements', 'edumodo'),
'icon' => 'eicon-font'
],
1
);
}
add_action('elementor/init','Elementor\edumodo_elementor_init');
if (!function_exists('edumodo_array_get')) {
function edumodo_array_get($array, $key, $default = null)
{
if (!is_array($array)) return $default;
return array_key_exists($key, $array) ? $array[$key] : $default;
}
}
add_filter( 'widget_text', 'do_shortcode' );