| 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/std/admin/ |
Upload File : |
<?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( 'WpssoStdAdminGeneral' ) ) {
class WpssoStdAdminGeneral {
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(
'mb_general_open_graph_videos_rows' => 2,
) );
}
/*
* SSO > General Settings > Videos tab.
*/
public function filter_mb_general_open_graph_videos_rows( $table_rows, $form ) {
if ( $this->p->debug->enabled ) {
$this->p->debug->mark();
}
$max_media_items = $this->p->cf[ 'form' ][ 'max_media_items' ];
$table_rows[] = '<td colspan="2">' . $this->p->msgs->pro_feature_video_api() . '</td>';
$table_rows[ 'og_vid_max' ] = $form->get_tr_hide( $in_view = 'basic', 'og_vid_max' ) .
$form->get_th_html( _x( 'Maximum Videos to Include', 'option label', 'wpsso' ),
$css_class = '', $css_id = 'og_vid_max' ) .
'<td class="blank">' . $form->get_no_select( 'og_vid_max', range( 0, $max_media_items ),
$css_class = 'short', $css_id = '', $is_assoc = true ) . '</td>';
$table_rows[ 'og_vid_prev_img' ] = '' .
$form->get_th_html( _x( 'Include Video Preview Images', 'option label', 'wpsso' ),
$css_class = '', $css_id = 'og_vid_prev_img' ) .
$form->get_no_td_checkbox( 'og_vid_prev_img', $this->p->msgs->preview_images_are_first() );
$table_rows[ 'og_vid_autoplay' ] = $form->get_tr_hide( $in_view = 'basic', 'og_vid_autoplay' ) .
$form->get_th_html( _x( 'Force Autoplay when Possible', 'option label', 'wpsso' ),
$css_class = '', $css_id = 'og_vid_autoplay' ) .
$form->get_no_td_checkbox( 'og_vid_autoplay' );
$check_embed_html = '';
foreach ( $this->p->cf[ 'form' ][ 'embed_media' ] as $opt_key => $opt_label ) {
$check_embed_html .= '<p>' . $form->get_no_checkbox_comment( $opt_key ) . ' ' . _x( $opt_label, 'option value', 'wpsso' ) . '</p>';
}
$table_rows[ 'plugin_embed_media' ] = '' .
$form->get_th_html( _x( 'Detect Embedded Media', 'option label', 'wpsso' ),
$css_class = '', $css_id = 'plugin_embed_media' ) .
'<td class="blank">' . $check_embed_html . '</td>';
return $table_rows;
}
}
}