Rename files and directory

This commit is contained in:
Ben Goldsworthy 2021-02-21 18:41:04 +00:00
parent 27abf83394
commit b349544fc2
4 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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;

View file

@ -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.