Skip to content

Instantly share code, notes, and snippets.

View jules0x's full-sized avatar
🔥

Jules jules0x

🔥
View GitHub Profile
@jules0x
jules0x / Custom-CMS-Menu-Item-Extension.php
Last active August 29, 2015 14:26
An example of a custom CMS menu-item created using a DataExtension
<?php
class CustomMenuItemExtension extends LeftAndMainExtension {
public function init() {
// unique identifier for this item. Will have an ID of Menu-$ID
$id = 'LinkToGoogle';
// your 'nice' title
$title = 'Google';
@jules0x
jules0x / cms_css.md
Last active July 7, 2018 08:19
Custom CSS for CMS

Add custom CSS to the CMS

LeftAndMain:
  extra_requirements_css:
    - app/code/css/custom.css
@jules0x
jules0x / remove_cms_menu_items.php
Last active August 20, 2021 00:30
Remove CMS menu items
CMSMenu::remove_menu_class(MenuAdmin::class);