![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/themes/dt-the7/inc/ |
<?php /** * The7 Less functions. * * @package The7 */ defined( 'ABSPATH' ) || exit; /** * Class The7_Less_Functions */ class The7_Less_Functions { /** * Escape function. * * @param array $arg * * @return array */ public static function escape( $arg ) { $v = &$arg[2][1][1]; $v = rawurlencode( $v ); return $arg; } /** * Min function. * * @param array $arg * * @return array */ public static function min( $arg ) { list( $type, $sp, $values ) = $arg; $unit = ''; $_values = array(); foreach ( $values as $value ) { $unit = $value[2]; $_values[] = intval( $value[1] ); } $min = call_user_func_array( 'min', $_values ); return array( 'number', $min, $unit ); } /** * Register the7_lessc functions. * * @param The7\Vendor\Lessphp\Compiler|null $less Less compiler. */ public static function register_functions( The7\Vendor\Lessphp\Compiler $less = null ) { if ( $less === null ) { return; } $less->registerFunction( 'escape', array( __CLASS__, 'escape' ) ); $less->registerFunction( 'min', array( __CLASS__, 'min' ) ); } }