| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/jetpack/modules/custom-css/custom-css/ |
Upload File : |
<?php
/**
* CSS preprocessor registration.
*
* To add a new preprocessor (or replace an existing one), hook into the
* jetpack_custom_css_preprocessors filter and add an entry to the array
* that is passed in.
*
* Format is:
* $preprocessors[ UNIQUE_KEY ] => array( 'name' => 'Processor name', 'callback' => [processing function] );
*
* The callback function accepts a single string argument (non-CSS markup) and returns a string (CSS).
*
* @param array $preprocessors The list of preprocessors added thus far.
* @return array
*/
function jetpack_register_css_preprocessors( $preprocessors ) {
$preprocessors['less'] = array(
'name' => 'LESS',
'callback' => 'jetpack_less_css_preprocess'
);
$preprocessors['sass'] = array(
'name' => 'Sass (SCSS Syntax)',
'callback' => 'jetpack_sass_css_preprocess'
);
return $preprocessors;
}
add_filter( 'jetpack_custom_css_preprocessors', 'jetpack_register_css_preprocessors' );
function jetpack_less_css_preprocess( $less ) {
require_once( dirname( __FILE__ ) . '/preprocessors/lessc.inc.php' );
$compiler = new lessc();
try {
return $compiler->compile( $less );
} catch ( Exception $e ) {
return $less;
}
}
function jetpack_sass_css_preprocess( $sass ) {
require_once( dirname( __FILE__ ) . '/preprocessors/scss.inc.php' );
$compiler = new scssc();
$compiler->setFormatter( 'scss_formatter' );
try {
return $compiler->compile( $sass );
} catch ( Exception $e ) {
return $sass;
}
}