$97 GRAYBYTE WORDPRESS FILE MANAGER $83

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/home/bravrvjk/cepurhuye.rw/wp-content/plugins/bopea-function/inc/bbpress/

HOME
Current File : /home/bravrvjk/cepurhuye.rw/wp-content/plugins/bopea-function/inc/bbpress//actions.php
<?php
defined( 'ABSPATH' ) || exit;

add_filter( 'bbp_get_the_content', 'jelly_bbp_private_input_field', 20, 3 );

add_action( 'bbp_new_topic_pre_extras', 'jelly_bbp_validate_custom_fields', 10 );
add_action( 'bbp_theme_after_topic_form_content', 'jelly_bbp_topic_custom_fields', 20 );

add_action( 'bbp_new_topic_post_extras', 'jelly_bbp_update_extra_fields', 20, 10 );
add_action( 'bbp_edit_topic_post_extras', 'jelly_bbp_update_extra_fields', 20, 10 );

add_action( 'bbp_new_reply_post_extras', 'jelly_bbp_update_private_field', 20, 10 );
add_action( 'bbp_edit_reply_post_extras', 'jelly_bbp_update_private_field', 20, 10 );

add_action( 'bbp_topic_metabox', 'jelly_bbp_register_topic_status', 10, 1 );
add_action( 'bbp_author_metabox_save', 'jelly_bbp_save_topic_status', 10, 1 );

add_action( 'bbp_get_topic_content', 'jelly_bbp_render_private', 1, 2 );
add_action( 'bbp_get_topic_content', 'jelly_bbp_render_extra_fields', 100, 2 );
add_action( 'bbp_get_reply_content', 'jelly_bbp_render_private', 1, 2 );
add_action( 'bbp_get_reply_content', 'jelly_bbp_render_extra_fields', 100, 2 );

if ( ! function_exists( 'jelly_bbp_update_extra_fields' ) ) {
	function jelly_bbp_update_extra_fields( $topic_id ) {

		if ( isset( $_POST['jelly_bbp_private_content'] ) ) {

			$messenger = jelly_bbp_validate_html_field( $_POST['jelly_bbp_private_content'] );
			update_post_meta( $topic_id, 'jelly_bbp_private_content', $messenger );
		}
		if ( isset( $_POST['jelly_bbp_topic_custom_field_1'] ) ) {
			update_post_meta( $topic_id, 'jelly_bbp_topic_custom_field_1', sanitize_text_field( $_POST['jelly_bbp_topic_custom_field_1'] ) );
		}
		if ( isset( $_POST['jelly_bbp_topic_custom_field_2'] ) ) {
			update_post_meta( $topic_id, 'jelly_bbp_topic_custom_field_2', sanitize_text_field( $_POST['jelly_bbp_topic_custom_field_2'] ) );
		}
	}
}

if ( ! function_exists( 'jelly_bbp_update_private_field' ) ) {
	function jelly_bbp_update_private_field( $reply_id ) {

		if ( isset( $_POST['jelly_bbp_private_content'] ) ) {
			$messenger = jelly_bbp_validate_html_field( $_POST['jelly_bbp_private_content'] );
			update_post_meta( $reply_id, 'jelly_bbp_private_content', $messenger );
		}
	}
}

if ( ! function_exists( 'jelly_bbp_topic_custom_fields' ) ) {
	function jelly_bbp_topic_custom_fields() {

		$data = [
			get_option( 'jelly_bbp_topic_custom_field_1', [] ),
			get_option( 'jelly_bbp_topic_custom_field_2', [] ),
		];

		?>
        <div class="bbp-custom-fields">
			<?php
			foreach ( $data as $index => $field ) :
				$index ++;
				$id = 'jelly_bbp_topic_custom_field_' . $index;
				if ( empty( $field['title'] ) ) {
					continue;
				}
				if ( isset( $_POST[ $id ] ) ) {
					$value = sanitize_text_field( $_POST[ $id ] );
				} elseif ( get_the_ID() ) {
					$value = get_post_meta( get_the_ID(), $id, true );
				} else {
					$value = '';
				} ?>
                <p>
                    <label for="<?php echo $id; ?>">
						<?php if ( ! empty( $field['private'] ) ) : ?><i class="jli-setting" aria-hidden="true"></i><?php endif;
						echo esc_html( $field['title'] ); ?></label><br>
                    <input type="text" value="<?php echo $value; ?>" size="40" name="<?php echo $id; ?>" id="<?php echo $id; ?>">
                </p>
			<?php
			endforeach; ?>
        </div>
		<?php
	}
}

if ( ! function_exists( 'jelly_bbp_validate_custom_fields' ) ) {
	function jelly_bbp_validate_custom_fields() {

		$data = [
			get_option( 'jelly_bbp_topic_custom_field_1', [] ),
			get_option( 'jelly_bbp_topic_custom_field_2', [] ),
		];

		foreach ( $data as $index => $field ) :
			$index ++;

			if ( empty( $field['title'] ) ) {
				continue;
			}

			$id = 'jelly_bbp_topic_custom_field_' . $index;

			if ( ! empty( $_POST[ $id ] ) ) {
				$content = sanitize_text_field( $_POST[ $id ] );
			}
			if ( empty( $content ) ) {
				bbp_add_error( $id, __( '<strong>Error</strong>: Your topic needs a ', 'bopea-function' ) . strtolower( $field['title'] . '.' ) );
			}

		endforeach;
	}
}

if ( ! function_exists( 'jelly_bbp_private_input_field' ) ) {
	function jelly_bbp_private_input_field( $output, $args, $post_content ) {

		if ( ! get_option( 'jelly_bbp_private' ) ) {
			return $output;
		}

		if ( ! empty( $args['context'] ) && 'topic' === $args['context'] ) {
			$id = get_the_ID();
		} else {
			$id = bbp_get_reply_id();
		}

		if ( isset( $_POST['jelly_bbp_private_content'] ) ) {
			$messenger = wp_unslash( $_POST['jelly_bbp_private_content'] );
		} else {
			$messenger = get_post_meta( $id, 'jelly_bbp_private_content', true );
		}

		$r = bbp_parse_args( $args, array(
			'context'       => 'topic',
			'wpautop'       => true,
			'media_buttons' => false,
			'textarea_rows' => '5',
			'tabindex'      => false,
			'editor_class'  => 'bbp-the-content',
			'tinymce'       => false,
			'teeny'         => true,
			'quicktags'     => true,
			'dfw'           => false
		), 'get_the_content' );

		ob_start(); ?>
        <div class="bbp-the-content-wrapper">
            <label for="jelly_bbp_private_content"><i class="jli-setting" aria-hidden="true"></i><?php esc_html_e( 'Private Content', 'bopea-function' ); ?>
            </label>
			<?php
			if ( bbp_use_wp_editor() ) :
				if ( bbp_use_wp_editor() && ( false !== $r['tinymce'] ) ) {
					remove_filter( 'bbp_get_form_forum_content', 'esc_textarea' );
					remove_filter( 'bbp_get_form_topic_content', 'esc_textarea' );
					remove_filter( 'bbp_get_form_reply_content', 'esc_textarea' );
				}

				add_filter( 'tiny_mce_plugins', 'bbp_get_tiny_mce_plugins' );
				add_filter( 'teeny_mce_plugins', 'bbp_get_tiny_mce_plugins' );
				add_filter( 'teeny_mce_buttons', 'bbp_get_teeny_mce_buttons' );
				add_filter( 'quicktags_settings', 'bbp_get_quicktags_settings' );

				wp_editor( $messenger, 'jelly_bbp_private_content', array(
					'wpautop'       => $r['wpautop'],
					'media_buttons' => $r['media_buttons'],
					'textarea_rows' => $r['textarea_rows'],
					'tabindex'      => $r['tabindex'],
					'editor_class'  => $r['editor_class'],
					'tinymce'       => $r['tinymce'],
					'teeny'         => $r['teeny'],
					'quicktags'     => $r['quicktags'],
					'dfw'           => $r['dfw'],
				) );

				remove_filter( 'tiny_mce_plugins', 'bbp_get_tiny_mce_plugins' );
				remove_filter( 'teeny_mce_plugins', 'bbp_get_tiny_mce_plugins' );
				remove_filter( 'teeny_mce_buttons', 'bbp_get_teeny_mce_buttons' );
				remove_filter( 'quicktags_settings', 'bbp_get_quicktags_settings' );
			else : ?>
                <textarea id="jelly_bbp_private_content" class="bbp-private-textarea" name="jelly_bbp_private_content" cols="60" rows="6"><?php echo $messenger; ?></textarea>
			<?php endif; ?>
        </div>
		<?php
		$output .= ob_get_clean();

		return $output;
	}
}

if ( ! function_exists( 'jelly_bbp_register_topic_status' ) ) {
	function jelly_bbp_register_topic_status( $post ) {

		$meta_ID  = 'jelly_topic_status';
		$selected = get_post_meta( $post->ID, $meta_ID, true );
		$data     = jelly_bbp_status_config();
		?>
        <p>
            <strong class="label"><?php esc_html_e( 'Frontend Status:', 'bopea-function' ); ?></strong>
            <label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Frontend Status', 'bopea-function' ); ?></label>
            <select id="<?php echo esc_attr( $meta_ID ); ?>_select" name="<?php echo esc_attr( $meta_ID ); ?>">
				<?php foreach ( $data as $key => $name ) : ?>
                    <option value="<?php echo esc_attr( $key ); ?>"<?php selected( $key, $selected ); ?>><?php echo esc_html__( $name ); ?></option>
				<?php endforeach; ?>
            </select>
        </p>
	<?php }
}

if ( ! function_exists( 'jelly_bbp_save_topic_status' ) ) {
	function jelly_bbp_save_topic_status( $topic_ID ) {

		$meta_ID = 'jelly_topic_status';

		if ( ! empty( $_POST['jelly_topic_status'] ) ) {
			update_post_meta( $topic_ID, $meta_ID, esc_attr( $_POST['jelly_topic_status'] ) );
		}
	}
}


Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0755
images
--
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0755
templates
--
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0755
actions.php
7.96 KB
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0644
bbp-load.php
2.561 KB
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0644
bbp.css
32.71 KB
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0644
helper.php
2.259 KB
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0644
settings.php
18.169 KB
25 Nov 2025 10.53 AM
bravrvjk / bravrvjk
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF