Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
rogermoss
/
nouveau2
/
wp-content
/
plugins
/
portfolio-elementor
📤 Upload
📝 New File
📁 New Folder
Close
Editing: portfolio-elementor.php
<?php /* Plugin Name: Post Grid, Image Gallery & Portfolio for Elementor | PowerFolio Plugin URI: https://powerfoliowp.com Description: This plugin extend Elementor by adding a Post Grid, Image Gallery and Portfolio widgets for free! Author: PWR Plugins Version: 2.1.4 Author URI: https://pwrplugins.com */ // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) { exit; } //Freemius if ( function_exists( 'pe_fs' ) ) { pe_fs()->set_basename( false, __FILE__ ); } else { // DO NOT REMOVE THIS IF, IT IS ESSENTIAL FOR THE `function_exists` CALL ABOVE TO PROPERLY WORK. if ( !function_exists( 'pe_fs' ) ) { // ... Freemius integration snippet ... // Create a helper function for easy SDK access. function pe_fs() { global $pe_fs ; if ( !isset( $pe_fs ) ) { // Include Freemius SDK. require_once dirname( __FILE__ ) . '/freemius/start.php'; $pe_fs = fs_dynamic_init( array( 'id' => '7226', 'slug' => 'portfolio-elementor', 'premium_slug' => 'portfolio-elementor-pro', 'type' => 'plugin', 'public_key' => 'pk_75702ac7c5c10d2bfd4880c1c8039', 'is_premium' => false, 'premium_suffix' => 'PRO', 'has_addons' => false, 'has_paid_plans' => true, 'menu' => array( 'slug' => 'elementor_portfolio', 'first-path' => 'admin.php?page=elementor_portfolio', ), 'is_live' => true, ) ); } return $pe_fs; } // Init Freemius. pe_fs(); // Signal that SDK was initiated. do_action( 'pe_fs_loaded' ); } // ... Your plugin's main file logic ... if ( !class_exists( 'ELPT_portfolio_Post_Types' ) ) { /* * Start Powerfolio */ /* * Custom Post Types */ require 'classes/powerfolio_post_types.php'; /* * Shortcodes */ require 'classes/powerfolio_shortcodes.php'; /* * Elementor */ require 'elementor/extend-elementor.php'; /* * Plugin Options */ require 'includes/panel.php'; /* * Plugin Functions */ require 'includes/functions.php'; /* * Review */ update_option( "elpt-installDate", date( 'Y-m-d h:i:s' ) ); if ( is_admin() ) { /*** Plugin review notice file */ require_once 'classes/powerfolio-feedback-notice.php'; new ELPTFeedbackNotice(); } } //Elementor Category if ( !function_exists( 'elpug_powerups_cat' ) ) { //Create Elementor Category function elpug_powerups_cat() { \Elementor\Plugin::$instance->elements_manager->add_category( 'elpug-elements', [ 'title' => __( 'Powerfolio / Power-Ups for Elementor', 'elpug' ), 'icon' => 'fa fa-plug', ], 2 ); } add_action( 'elementor/init', 'elpug_powerups_cat' ); } //Post Grids Module if ( !class_exists( 'PWGD_Register_PwrGrids_Elementor' ) ) { require 'modules/post-grid-module/post-grid-module.php'; } register_activation_hook( __FILE__, 'elpt_activate' ); } //Workaround for Packery mode in some themes if ( !function_exists( 'elpt_fix_packery_layout_themes' ) ) { function elpt_fix_packery_layout_themes() { wp_enqueue_script( 'jquery-packery2', plugin_dir_url( __FILE__ ) . 'vendor/isotope/js/packery-mode.pkgd.min.js', array( 'jquery', 'imagesloaded' ), '3.0.6', true ); } $current_theme = wp_get_theme(); if ( $current_theme == 'Betheme' || $current_theme == 'OceanWP' ) { add_action( 'wp_enqueue_scripts', 'elpt_fix_packery_layout_themes', 99999 ); } }
Save
Cancel