(function($) { $.entwine('ss.tree', function($){ $('.cms-tree').entwine({ getTreeConfig: function() { var self = this, config = this._super(), hints = this.getHints(); config.plugins.push('contextmenu'); config.contextmenu = { 'items': function(node) { var menuitems = { 'edit': { 'label': ss.i18n._t('Tree.EditPage'), 'action': function(obj) { $('.cms-container').entwine('.ss').loadPanel(ss.i18n.sprintf( self.data('urlEditpage'), obj.data('id') )); } } }; // Build a list for allowed children as submenu entries var pagetype = node.data('pagetype'), id = node.data('id'), disallowedChildren = hints[pagetype].disallowedChildren, allowedChildren = $.extend(true, {}, hints['All']), // clone disallowedClass, menuAllowedChildren = {}, hasAllowedChildren = false; // Filter allowed if(disallowedChildren) { for(var i=0; i' + klassData.title, '_class': 'class-' + klass, 'action': function(obj) { $('.cms-container').entwine('.ss').loadPanel(ss.i18n.sprintf( self.data('urlAddpage'), id, klass )); } }; }); if(hasAllowedChildren) { menuitems['addsubpage'] = { 'label': ss.i18n._t('Tree.AddSubPage'), 'submenu': menuAllowedChildren }; } return menuitems; } }; return config; } }); }); }(jQuery));