wp/wp-content/plugins/portfolio/portfolio.php
changeset 19 3d72ae0968f4
parent 16 a86126ab1dd4
child 21 48c4eec2b7e6
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
     4 Plugin URI: https://bestwebsoft.com/products/wordpress/plugins/portfolio/
     4 Plugin URI: https://bestwebsoft.com/products/wordpress/plugins/portfolio/
     5 Description: Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.
     5 Description: Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.
     6 Author: BestWebSoft
     6 Author: BestWebSoft
     7 Text Domain: portfolio
     7 Text Domain: portfolio
     8 Domain Path: /languages
     8 Domain Path: /languages
     9 Version: 2.53
     9 Version: 2.56
    10 Author URI: https://bestwebsoft.com/
    10 Author URI: https://bestwebsoft.com/
    11 License: GPLv2 or later
    11 License: GPLv2 or later
    12 */
    12 */
    13 
    13 
    14 /*
    14 /*
    15 	@ Copyright 2020  BestWebSoft  ( https://support.bestwebsoft.com )
    15 	@ Copyright 2021  BestWebSoft  ( https://support.bestwebsoft.com )
    16 
    16 
    17 	This program is free software; you can redistribute it and/or modify
    17 	This program is free software; you can redistribute it and/or modify
    18 	it under the terms of the GNU General Public License, version 2, as
    18 	it under the terms of the GNU General Public License, version 2, as
    19 	published by the Free Software Foundation.
    19 	published by the Free Software Foundation.
    20 
    20 
   407 if ( ! function_exists( 'prtfl_settings_page' ) ) {
   407 if ( ! function_exists( 'prtfl_settings_page' ) ) {
   408 	function prtfl_settings_page() {
   408 	function prtfl_settings_page() {
   409 		if ( ! class_exists( 'Bws_Settings_Tabs' ) )
   409 		if ( ! class_exists( 'Bws_Settings_Tabs' ) )
   410     		require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
   410     		require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
   411 		require_once( dirname( __FILE__ ) . '/inc/class-prtfl-settings.php' );
   411 		require_once( dirname( __FILE__ ) . '/inc/class-prtfl-settings.php' );
   412 		$page = new Prtfl_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
   412 		$page = new Prtfl_Settings_Tabs( plugin_basename( __FILE__ ) );
       
   413         if ( method_exists( $page,'add_request_feature' ) )
       
   414             $page->add_request_feature(); ?>
   413 		<div class="wrap">
   415 		<div class="wrap">
   414 			<h1><?php _e( 'Portfolio Settings', 'portfolio' ); ?></h1>
   416 			<h1><?php _e( 'Portfolio Settings', 'portfolio' ); ?></h1>
   415 			<?php $page->display_content(); ?>
   417 			<?php $page->display_content(); ?>
   416 		</div>
   418 		</div>
   417 	<?php }
   419 	<?php }