Skip to content

Commit

Permalink
updating cli prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Jul 11, 2024
1 parent c7675cf commit aa00ce5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/InitSetup/standard/theme/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
* @package %g_namespace%
*/

use %g_namespace%\AdminMenus\ReusableBlocksHeaderFooter;
use %g_namespace%\AdminMenus\AdminPatternsHeaderFooterMenu;

?>

</main>

<?php
$footerPartialId = get_option(ReusableBlocksHeaderFooter::FOOTER_PARTIAL) ?? '';
ReusableBlocksHeaderFooter::renderPartial($footerPartialId);
$footerPartialId = get_option(AdminPatternsHeaderFooterMenu::FOOTER_PARTIAL) ?? '';
AdminPatternsHeaderFooterMenu::renderPartial($footerPartialId);

wp_footer();
?>
Expand Down
6 changes: 3 additions & 3 deletions src/InitSetup/standard/theme/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

use %g_use_libs%\Helpers\Helpers;
use %g_namespace%\AdminMenus\ReusableBlocksHeaderFooter;
use %g_namespace%\AdminMenus\AdminPatternsHeaderFooterMenu;

?>
<!DOCTYPE html>
Expand All @@ -26,8 +26,8 @@

<?php
// Header reusable block.
$headerPartialId = get_option(ReusableBlocksHeaderFooter::HEADER_PARTIAL) ?? '';
ReusableBlocksHeaderFooter::renderPartial($headerPartialId);
$headerPartialId = get_option(AdminPatternsHeaderFooterMenu::HEADER_PARTIAL) ?? '';
AdminPatternsHeaderFooterMenu::renderPartial($headerPartialId);
?>

<main class="main-content" id="main-content">

0 comments on commit aa00ce5

Please sign in to comment.