API Docs for: 1.0.0
Show:

File: Resources/public/js/models/structs/ez-contenttree.js

  1. /*
  2. * Copyright (C) eZ Systems AS. All rights reserved.
  3. * For full copyright and license information view LICENSE file distributed with this source code.
  4. */
  5. YUI.add('ez-contenttree', function (Y) {
  6. "use strict";
  7. /**
  8. * Provides the content tree structure based on Y.Tree and different plugins
  9. *
  10. * @module ez-contenttree
  11. */
  12. Y.namespace('eZ');
  13.  
  14. console.log('[DEPRECRATED] eZ.ContentTree is deprecated');
  15. console.log('[DEPRECRATED] it will be removed from PlatformUI 2.0');
  16. /**
  17. * Content tree structure
  18. *
  19. * @namespace eZ
  20. * @class ContentTree
  21. * @constructor
  22. * @extends Tree
  23. */
  24. Y.eZ.ContentTree = Y.Base.create('contentTree', Y.Tree, [
  25. Y.Tree.Openable,
  26. Y.Tree.Selectable
  27. ]);
  28. });
  29.