Uname:Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64

Base Dir : /home/httpd/vhosts/comeonline.ch/httpdocs

User : onlineadmin


403WebShell
403Webshell
Server IP : 80.74.154.100  /  Your IP : 216.73.217.0
Web Server : Apache
System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
User : onlineadmin ( 10487)
PHP Version : 8.5.7
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/lib/integ/form/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/lib/integ/form/gravityview.php
<?php
/*
 * License: GPLv3
 * License URI: https://www.gnu.org/licenses/gpl.txt
 * Copyright 2012-2026 Jean-Sebastien Morisset (https://wpsso.com/)
 */

if ( ! defined( 'ABSPATH' ) ) {

	die( 'These aren\'t the droids you\'re looking for.' );
}

if ( ! class_exists( 'WpssoIntegFormGravityview' ) ) {

	class WpssoIntegFormGravityview {

		private $p;	// Wpsso class object.

		public function __construct( &$plugin ) {

			$this->p =& $plugin;

			if ( $this->p->debug->enabled ) {

				$this->p->debug->mark();
			}

			$this->p->util->add_plugin_filters( $this, array(
				'post_url'         => 2,
				'title_seed'       => 5,
				'description_seed' => 4,
				'post_image_urls'  => 4,
			) );

			if ( is_admin() ) {

				/*
				 * The 'add_meta_boxes' action fires after all built-in meta boxes have been added.
				 */
				add_action( 'add_meta_boxes', array( $this, 'add_metabox_gravityview_integration' ) );

				add_action( 'gravityview_noconflict_styles', array( $this, 'cleanup_gform_noconflict_styles' ) );
				add_action( 'gravityview_noconflict_scripts', array( $this, 'cleanup_gform_noconflict_scripts' ) );
			}
		}

		public function filter_post_url( $url, $mod ) {

			if ( $entry_id = gravityview_is_single_entry() ) {

				$var_name = \GV\Entry::get_endpoint_name();

				if ( false !== strpos( $url, '?' ) ) {

					return add_query_arg( $var_name, $entry_id, $url );

				}

				return trailingslashit( $url ) . $var_name . '/' . $entry_id . '/';
			}

			return $url;
		}

		public function filter_title_seed( $title_text, $mod, $num_hashtags, $md_key, $title_sep ) {

			if ( $entry_id = gravityview_is_single_entry() ) {

				$opts = $mod[ 'obj' ]->get_options( $mod[ 'id' ] );

				if ( ! empty( $opts[ 'gv_id_title' ] ) ) {

					$entry = gravityview_get_entry( $entry_id );

					if ( isset( $entry[ $opts[ 'gv_id_title' ] ] ) ) {

						return $entry[ $opts[ 'gv_id_title' ] ];
					}
				}
			}

			return $title_text;
		}

		public function filter_description_seed( $desc_text, $mod, $num_hashtags, $md_key ) {

			if ( $entry_id = gravityview_is_single_entry() ) {

				$opts = $mod[ 'obj' ]->get_options( $mod[ 'id' ] );

				if ( ! empty( $opts[ 'gv_id_desc' ] ) ) {

					$entry = gravityview_get_entry( $entry_id );

					if ( isset( $entry[ $opts[ 'gv_id_desc' ] ] ) ) {

						return $entry[ $opts[ 'gv_id_desc' ] ];
					}
				}
			}

			return $desc_text;
		}

		public function filter_post_image_urls( $urls, $size_name, $post_id, $mod ) {

			if ( $entry_id = gravityview_is_single_entry() ) {

				$opts = $mod[ 'obj' ]->get_options( $mod[ 'id' ] );

				if ( ! empty( $opts[ 'gv_id_img' ] ) ) {

					$entry = gravityview_get_entry( $entry_id );

					if ( isset( $entry[ $opts[ 'gv_id_img' ] ] ) ) {

						list( $img_url, $img_title, $img_caption, $img_desc ) = array_pad( explode( '|:|', $entry[ $opts[ 'gv_id_img' ] ] ), 4, false );

						if ( ! empty( $img_url ) ) {

							$urls[] = $img_url;

							return $urls;
						}
					}
				}
			}

			return $urls;
		}

		public function add_metabox_gravityview_integration() {

			if ( ! is_admin() ) {	// just in case

				return;
			}

			$metabox_id      = 'gravityview_integration';
			$metabox_title   = _x( 'Single Entry Integration', 'metabox title', 'wpsso' );
			$metabox_screen  = 'gravityview';
			$metabox_context = 'side';
			$metabox_prio    = 'high';
			$callback_args   = array(	// Second argument passed to the callback function / method.
				'__block_editor_compatible_meta_box' => true,
			);

			add_meta_box( '_wpsso_' . $metabox_id, $metabox_title,
				array( $this, 'show_metabox_gravityview_integration' ), $metabox_screen,
					$metabox_context, $metabox_prio, $callback_args );
		}

		public function show_metabox_gravityview_integration( $post_obj ) {

			if ( $this->p->debug->enabled ) {

				$this->p->debug->mark();
			}

			$mod  = $this->p->post->get_mod( $post_obj->ID );
			$opts = $mod[ 'obj' ]->get_options( $mod[ 'id' ] );
			$defs = $mod[ 'obj' ]->get_defaults( $mod[ 'id' ] );
			$form = new SucomForm( $this->p, WPSSO_META_NAME, $opts, $defs, $this->p->id );

			echo '<table class="sucom-settings wpsso post-side-metabox">';
			echo '<tr>';
			echo $form->get_th_html( _x( 'Title Field ID', 'option label', 'wpsso' ) );
			echo '<td>' . $form->get_input( 'gv_id_title', 'short', '', 0, true ) . '</td>';
			echo '</tr>';
			echo '<tr>';
			echo $form->get_th_html( _x( 'Description Field ID', 'option label', 'wpsso' ) );
			echo '<td>' . $form->get_input( 'gv_id_desc', 'short', '', 0, true ) . '</td>';
			echo '</tr>';
			echo '<tr>';
			echo $form->get_th_html( _x( 'Post Image Field ID', 'option label', 'wpsso' ) );
			echo '<td>' . $form->get_input( 'gv_id_img', 'short', '', 0, true ) . '</td>';
			echo '</tr>';
			echo '</table>';
		}

		public function cleanup_gform_noconflict_styles( $styles ) {

			return array_merge( $styles, array(
				'jquery-ui.js',
				'jquery-qtip.js',
				'sucom-metabox-tabs',
				'sucom-settings-page',
				'sucom-settings-table',
				'wp-color-picker',
				'wpsso-admin-page',
			) );
		}

		public function cleanup_gform_noconflict_scripts( $scripts ) {

			return array_merge( $scripts, array(
				'jquery-ui-datepicker',
				'jquery-qtip',
				'sucom-admin-media',
				'sucom-admin-page',
				'sucom-metabox',
				'sucom-settings-page',
				'sucom-tooltips',
				'wp-color-picker',
				'wpsso-metabox',
				'wpsso-block-editor',
			) );
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit