HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/biblioteka/wp-content/plugins/gallery-by-supsystic/src/GridGallery/Photos/Module.php
<?php

/**
 * Class GridGallery_Photos_Module
 * Photos module
 *
 * @package GridGallery\Photos
 * @author Artur Kovalevsky
 */
class GridGallery_Photos_Module extends RscSgg_Mvc_Module
{

    /**
     * {@inheritdoc}
     */
    public function onInit()
    {
        parent::onInit();

        $config = $this->getEnvironment()->getConfig();

        add_action('admin_enqueue_scripts', array($this, 'enqueueMedia'));

        add_action($config->get('hooks_prefix') . 'after_ui_loaded', array($this, 'loadAssets'));

        add_action('delete_attachment', array(
            new GridGallery_Photos_Model_Photos(
                $config->isEnvironment(RscSgg_Environment::ENV_DEVELOPMENT)
            ), 'deleteByAttachmentId'
        ));

        add_action(
            'grid_gallery_delete_folder',
            array(
                new GridGallery_Photos_Model_Photos($config->isEnvironment(
                    RscSgg_Environment::ENV_DEVELOPMENT
                )),
                'deleteByFolderId'
            )
        );

        add_filter(
            'wp_prepare_attachment_for_js',
            array($this, 'prepareAttachmentLinks')
        );

        // Sets the JPEG quality.
        add_filter('jpeg_quality', array($this, 'getJpegQuality'));

        //Uncomment this to enable images menu item
        /*$menu = $this->getEnvironment()->getMenu();
        $submenu = $menu->createSubmenuItem();
        $submenu->setCapability('manage_options')
            ->setMenuSlug('supsystic-gallery&module=photos&action=index')
            ->setMenuTitle('Images')
            ->setPageTitle('Images')
            ->setModuleName('photos');

        $menu->addSubmenuItem('photos', $submenu)->register();*/
    }

    /**
     * Loads WordPress Media API
     */
    public function enqueueMedia()
    {
        if (!did_action('wp_enqueue_media')) {
            wp_enqueue_media();
        }
    }

    public function getBackendCSS() {
        return array(
            $this->getLocationUrl() . '/assets/css/grid-gallery.photos.css'
        );
    }

    public function getBackendJS() {
        return array(
            array(
                'source' => $this->getLocationUrl() . '/assets/js/photos.js',
                'dependencies' => array('jquery', 'jquery-ui-draggable', 'jquery-ui-droppable'),
            ),
            $this->getLocationUrl() . '/assets/js/URI.min.js',
            $this->getLocationUrl() . '/assets/js/grid-gallery.photos.uploader.js',
            //$this->getLocationUrl() . '/assets/js/grid-gallery.photos.folders.js'
        );
    }
    /**
     * Loads the assets of the current module
     * @param GridGallery_Ui_Module $ui
     */
    public function loadAssets(GridGallery_Ui_Module $ui)
    {
        $env = $this->getEnvironment();
        if($env->isModule('galleries', 'saveSettings')) return;

        $ui->asset->enqueue('styles', $this->getBackendCSS());
        $ui->asset->enqueue('scripts', $this->getBackendJS());
    }

    public function prepareAttachmentLinks($data)
    {
        $photos = new GridGallery_Photos_Model_Photos();
        $id     = $data['id'];

        // Called 'Extranal link', because 'link' reserved by WordPress.
        $data['external_link'] = get_post_meta(
            $id,
            $photos->getMetadataField('link'),
            true
        );

        $data['target'] = get_post_meta(
            $id,
            $photos->getMetadataField('target'),
            true
        );

        $data['rel'] = get_post_meta(
            $id,
            $photos->getMetadataField('rel'),
            true
        );

        return $data;
    }

    /**
     * Returns the JPEG quality value.
     * If value is not specified: default WordPress values will be used (80%).
     * @return int
     */
    public function getJpegQuality()
    {
        $config = $this->getEnvironment()->getConfig();

        return $config->get('jpeg_quality', 80);
    }
}