first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,94 @@
<?php if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
if ( class_exists( 'Solarify_Widget_Facebook_Page_Stream' ) ) {
return;
}
if ( defined( 'FW' ) ) {
$fw_social_facebook = fw()->extensions->get( 'social-facebook' );
if ( ! empty( $fw_social_facebook ) ) {
class Solarify_Widget_Facebook_Page_Stream extends WP_Widget {
/**
* @internal
*/
function __construct() {
//widget_recent_entries
//widget_facebook_page_stream
$widget_ops = array(
'classname' => 'widget_recent_entries widget_facebook_page_stream',
'description' => esc_html__( 'FaceBook Page Steam', 'solarify' )
);
parent::__construct( false, esc_html__( 'Theme - Facebook', 'solarify' ), $widget_ops );
}
/**
* @param array $args
* @param array $instance
*/
function widget( $args, $instance ) {
extract( $args );
$title = esc_attr( $instance['title'] );
$page_id = esc_attr( $instance['page_id'] );
$number = ( (int) ( esc_attr( $instance['number'] ) ) > 0 ) ? esc_attr( $instance['number'] ) : 5;
$title = $before_title . $title . $after_title;
$result = fw_ext_social_facebook_graph_api_explorer( 'GET', $page_id, array( 'fields' => 'posts.limit(' . $number . '){message}' ) );
$result = json_decode( $result );
if ( ! empty( $result->posts->data ) ) {
$posts = $result->posts->data;
$filepath = SOLARIFY_THEME_PATH . '/inc/widgets/facebook-page-stream/views/widget.php';
if ( file_exists( $filepath ) ) {
include( $filepath );
} else {
esc_html_e( 'View not found', 'solarify' );
}
} else {
esc_html_e( 'Facebook in Social Extension not configured', 'solarify' );
}
}
function update( $new_instance, $old_instance ) {
return $new_instance;
}
function form( $instance ) {
$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'page_id' => '', 'number' => '' ) );
?>
<p>
<label
for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title', 'solarify' ); ?> </label>
<input type="text" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>"
value="<?php echo esc_attr( $instance['title'] ); ?>" class="widefat"
id="<?php $this->get_field_id( 'title' ); ?>"/>
</p>
<p>
<label
for="<?php echo esc_attr( $this->get_field_id( 'page_id' ) ); ?>"><?php esc_html_e( 'Page ID:', 'solarify' ); ?> </label>
<input type="text" name="<?php echo esc_attr( $this->get_field_name( 'page_id' ) ); ?>"
value="<?php echo esc_attr( $instance['page_id'] ); ?>" class="widefat"
id="<?php $this->get_field_id( 'page_id' ); ?>"/>
</p>
<p>
<label
for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php esc_html_e( 'Number of posts:', 'solarify' ); ?>
:</label>
<input type="text" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>"
value="<?php echo esc_attr( $instance['number'] ); ?>" class="widefat"
id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"/>
</p>
<?php
}
}
}
}

View File

@@ -0,0 +1,24 @@
<?php if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
/**
* @var $number
* @var $before_widget
* @var $after_widget
* @var $title
* @var $posts
*/
echo wp_kses_post( $before_widget );
echo wp_kses_post( $title );
?>
<ul class="darklinks">
<?php
foreach ( $posts as $post ) {
if ( isset( $post->message ) ) {
echo '<li><a href="' . esc_url( 'https://facebook.com/' . $post->id . '/') . '">' . wp_kses_post( wp_trim_words( $post->message, 24 ) ) . '</a></li>';
}
}
?>
</ul>
<?php echo wp_kses_post( $after_widget ); ?>