├── README.md ├── _build ├── build.config.php ├── build.transport.php ├── data │ ├── transport.chunks.php │ ├── transport.menu.php │ ├── transport.plugins.php │ ├── transport.settings.php │ └── transport.snippets.php ├── includes │ └── functions.php └── properties │ └── properties.mxmanager.php └── core └── components └── mxmanager ├── docs ├── changelog.txt ├── license.txt └── readme.txt ├── elements └── plugins │ └── plugin.mxmanager.php ├── lexicon ├── en │ ├── default.inc.php │ ├── properties.inc.php │ └── setting.inc.php └── ru │ ├── default.inc.php │ ├── properties.inc.php │ └── setting.inc.php ├── model └── mxmanager │ ├── metadata.mysql.php │ └── mxmanager.class.php └── processors ├── elements ├── category │ ├── create.class.php │ ├── remove.class.php │ └── update.class.php ├── chunk │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ └── update.class.php ├── getcombo.class.php ├── getlist.class.php ├── plugin │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ └── update.class.php ├── snippet │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ └── update.class.php ├── template │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ └── update.class.php └── tv │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ └── update.class.php ├── files ├── dir │ ├── create.class.php │ ├── remove.class.php │ └── rename.class.php ├── file │ ├── create.class.php │ ├── get.class.php │ ├── remove.class.php │ ├── rename.class.php │ └── update.class.php └── getlist.class.php ├── main ├── auth.class.php ├── clearcache.class.php ├── errorlog │ ├── clear.class.php │ └── get.class.php └── log │ └── getlist.class.php └── resources ├── create.class.php ├── delete.class.php ├── get.class.php ├── getcombo.class.php ├── getlist.class.php ├── getrow.class.php ├── gettvs.class.php ├── gettypes.class.php ├── publish.class.php ├── undelete.class.php ├── unpublish.class.php └── update.class.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/README.md -------------------------------------------------------------------------------- /_build/build.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/build.config.php -------------------------------------------------------------------------------- /_build/build.transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/build.transport.php -------------------------------------------------------------------------------- /_build/data/transport.chunks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/data/transport.chunks.php -------------------------------------------------------------------------------- /_build/data/transport.menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/data/transport.menu.php -------------------------------------------------------------------------------- /_build/data/transport.plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/data/transport.plugins.php -------------------------------------------------------------------------------- /_build/data/transport.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/data/transport.settings.php -------------------------------------------------------------------------------- /_build/data/transport.snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/data/transport.snippets.php -------------------------------------------------------------------------------- /_build/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/includes/functions.php -------------------------------------------------------------------------------- /_build/properties/properties.mxmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/_build/properties/properties.mxmanager.php -------------------------------------------------------------------------------- /core/components/mxmanager/docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/docs/changelog.txt -------------------------------------------------------------------------------- /core/components/mxmanager/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/docs/license.txt -------------------------------------------------------------------------------- /core/components/mxmanager/docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/docs/readme.txt -------------------------------------------------------------------------------- /core/components/mxmanager/elements/plugins/plugin.mxmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/elements/plugins/plugin.mxmanager.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/en/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/en/default.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/en/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/en/properties.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/en/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/en/setting.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/ru/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/ru/default.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/ru/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/ru/properties.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/lexicon/ru/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/mxManager/HEAD/core/components/mxmanager/lexicon/ru/setting.inc.php -------------------------------------------------------------------------------- /core/components/mxmanager/model/mxmanager/metadata.mysql.php: -------------------------------------------------------------------------------- 1 |