Skip to content

Commit 990317d

Browse files
author
Askupa Software
committed
Changed name to 'compiler'
1 parent d28842c commit 990317d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Domain Path: /languages
2121
*/
2222

23-
require_once 'renderer.php';
23+
require_once 'compiler.php';
2424

2525
if( !function_exists('wp_dynamic_css_enqueue') )
2626
{
@@ -34,7 +34,7 @@
3434
*/
3535
function wp_dynamic_css_enqueue( $path )
3636
{
37-
$dcss = DynamicCSSRenderer::get_instance();
37+
$dcss = DynamicCSSCompiler::get_instance();
3838
$dcss->enqueue_style( $path );
3939
}
4040
}

renderer.php renamed to compiler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
/**
11-
* Dynamic CSS Renderer Utility Class
11+
* Dynamic CSS Compiler Utility Class
1212
*
1313
*
1414
* Dynamic CSS Syntax
@@ -21,7 +21,7 @@
2121
* is passed the variable name without the dollar sign, which can be used with
2222
* get_option() or get_theme_mod() etc.
2323
*/
24-
class DynamicCSSRenderer
24+
class DynamicCSSCompiler
2525
{
2626
/**
2727
* @var Singleton The reference to *Singleton* instance of this class
@@ -50,7 +50,7 @@ public static function get_instance()
5050
}
5151

5252
/**
53-
* Initiate the renderer by hooking to wp_print_styles
53+
* Initiate the compiler by hooking to wp_print_styles
5454
*/
5555
public function init()
5656
{

0 commit comments

Comments
 (0)