Server IP : 15.235.198.142 / Your IP : 216.73.216.34 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/rhodeworks/wp-content/plugins/nextgen-gallery/src/DynamicStylesheets/ |
Upload File : |
<?php namespace Imagely\NGG\DynamicStylesheets; use Imagely\NGG\Display\View; use Imagely\NGG\Util\Sanitization; class Controller { public function index_action( $return = false ) { header( 'Content-Type: text/css; charset=' . get_option( 'blog_charset' ), true ); if ( \C_NextGEN_Bootstrap::get_pro_api_version() < 4.0 ) { $manager = Manager::get_instance( 'all' ); $manager->register( 'nextgen_pro_film', 'photocrati-nextgen_pro_film#nextgen_pro_film_dyncss' ); $manager->register( 'nextgen_pro_grid_album', 'photocrati-nextgen_pro_albums#nextgen_pro_grid_album_dyncss' ); $manager->register( 'nextgen_pro_list_album', 'photocrati-nextgen_pro_albums#nextgen_pro_list_album_dyncss' ); $manager->register( 'nextgen_pro_blog', 'photocrati-nextgen_pro_blog_gallery#nextgen_pro_blog_dyncss' ); $manager->register( 'nextgen_pro_thumbnail_grid', 'photocrati-nextgen_pro_thumbnail_grid#nextgen_pro_thumbnail_grid_dyncss' ); } // Nonce verification is not necessary: this is not form data, but generated by NextGEN as part of its displayed // gallery customization for style. // // phpcs:disable WordPress.Security.NonceVerification.Recommended $data = Sanitization::recursive_stripslashes( $_REQUEST['data'] ); $name = Sanitization::recursive_stripslashes( $_REQUEST['name'] ); // phpcs:enable WordPress.Security.NonceVerification.Recommended if ( isset( $data ) && isset( $name ) ) { $manager = Manager::get_instance( 'all' ); if ( \C_NextGEN_Bootstrap::get_pro_api_version() < 4.0 ) { $view = new \C_MVC_View( $manager->get_css_template( $name ), $manager->decode( $data ) ); } else { $view = new View( $manager->get_css_template( $name ), $manager->decode( $data ) ); } return $view->render( $return ); } } }