Rename files and directory
This commit is contained in:
parent
27abf83394
commit
b349544fc2
4 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@
|
||||||
* @author Stefan Herndler
|
* @author Stefan Herndler
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*/
|
*/
|
||||||
class MCI_Footnotes_Layout_Diagnostics extends MCI_Footnotes_LayoutEngine {
|
class MCI_Footnotes_Layout_Diagnostics extends MCI_Footnotes_Layout_Engine {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a Priority index. Lower numbers have a higher Priority.
|
* Returns a Priority index. Lower numbers have a higher Priority.
|
|
@ -24,7 +24,7 @@
|
||||||
* @author Stefan Herndler
|
* @author Stefan Herndler
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*/
|
*/
|
||||||
abstract class MCI_Footnotes_LayoutEngine {
|
abstract class MCI_Footnotes_Layout_Engine {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores the Hook connection string for the child sub page.
|
* Stores the Hook connection string for the child sub page.
|
|
@ -52,7 +52,7 @@ class MCI_Footnotes_Layout_Init {
|
||||||
// iterate through each class define in the current script.
|
// iterate through each class define in the current script.
|
||||||
foreach ( get_declared_classes() as $l_str_class_name ) {
|
foreach ( get_declared_classes() as $l_str_class_name ) {
|
||||||
// accept only child classes of the layout engine.
|
// accept only child classes of the layout engine.
|
||||||
if ( is_subclass_of( $l_str_class_name, 'MCI_Footnotes_LayoutEngine' ) ) {
|
if ( is_subclass_of( $l_str_class_name, 'MCI_Footnotes_Layout_Engine' ) ) {
|
||||||
$l_obj_class = new $l_str_class_name();
|
$l_obj_class = new $l_str_class_name();
|
||||||
// append new instance of the layout engine sub class.
|
// append new instance of the layout engine sub class.
|
||||||
$this->a_arr_sub_page_classes[ $l_obj_class->getPriority() ] = $l_obj_class;
|
$this->a_arr_sub_page_classes[ $l_obj_class->getPriority() ] = $l_obj_class;
|
|
@ -49,7 +49,7 @@
|
||||||
* @author Stefan Herndler
|
* @author Stefan Herndler
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*/
|
*/
|
||||||
class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_LayoutEngine {
|
class MCI_Footnotes_Layout_Settings extends MCI_Footnotes_Layout_Engine {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a Priority index. Lower numbers have a higher Priority.
|
* Returns a Priority index. Lower numbers have a higher Priority.
|
Reference in a new issue