Revert "refactor: remove Hungarian notation and MCI prefixes"

This reverts commit 1284544556.
This commit is contained in:
Ben Goldsworthy 2021-04-19 12:15:17 +01:00
parent c0672461b0
commit 2f809f4fe9
15 changed files with 1710 additions and 1710 deletions

View file

@ -23,7 +23,7 @@
* @since 2.5.3 (Hungarian)
* @var str
*/
define( 'FOOTNOTES_VERSION', '2.7.1' );
define( 'C_STR_FOOTNOTES_VERSION', '2.7.1' );
/**
* Defines the current environment ('development' or 'production').
@ -108,10 +108,10 @@ define( 'PRODUCTION_ENV', false );
require_once dirname( __FILE__ ) . '/includes.php';
// Add Plugin Links to the "installed plugins" page.
$plugin_file = 'footnotes/footnotes.php';
add_filter( "plugin_action_links_{$plugin_file}", array( 'Hooks', 'get_plugin_links' ), 10, 2 );
$l_str_plugin_file = 'footnotes/footnotes.php';
add_filter( "plugin_action_links_{$l_str_plugin_file}", array( 'Hooks', 'get_plugin_links' ), 10, 2 );
// Initialize the Plugin.
$g_obj_mci_footnotes = new Footnotes();
$g_obj_mci_footnotes = new MCI_Footnotes();
// Run the Plugin.
$g_obj_mci_footnotes->run();