├── .gitignore ├── .htaccess ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── admin ├── index.php └── themes │ └── default │ ├── css │ └── default.css │ ├── index.template.php │ ├── js │ └── default.js │ └── login.template.php ├── backups ├── .empty └── .htaccess ├── boot └── defines.php ├── engine ├── Alert.php ├── Monstra.php ├── Option.php ├── Plugin │ ├── Action.php │ ├── Backend.php │ ├── Filter.php │ ├── Frontend.php │ ├── I18n.php │ ├── Javascript.php │ ├── Navigation.php │ ├── Plugin.php │ ├── Stylesheet.php │ └── View.php ├── Security.php ├── Shortcode.php ├── Site.php ├── Uri.php ├── Xmldb │ ├── DB.php │ ├── Table.php │ └── XML.php ├── _init.php └── boot │ ├── actions.php │ ├── defines.php │ ├── filters.php │ └── shortcodes.php ├── favicon.ico ├── index.php ├── install.php ├── libraries ├── Gelato │ ├── Agent │ │ └── Agent.php │ ├── Arr │ │ └── Arr.php │ ├── Cache │ │ └── Cache.php │ ├── ClassLoader │ │ └── ClassLoader.php │ ├── Cookie │ │ └── Cookie.php │ ├── Curl │ │ └── Curl.php │ ├── Date │ │ └── Date.php │ ├── Debug │ │ └── Debug.php │ ├── ErrorHandler │ │ ├── ErrorHandler.php │ │ └── Resources │ │ │ └── Views │ │ │ └── Errors │ │ │ ├── exception.php │ │ │ └── production.php │ ├── FileSystem │ │ ├── Dir.php │ │ └── File.php │ ├── Form │ │ └── Form.php │ ├── Gelato.php │ ├── Html │ │ └── Html.php │ ├── Http │ │ ├── Request.php │ │ └── Response.php │ ├── Image │ │ └── Image.php │ ├── Inflector │ │ └── Inflector.php │ ├── Log │ │ └── Log.php │ ├── Minify │ │ ├── MinifyCSS.php │ │ ├── MinifyHTML.php │ │ └── MinifyJS.php │ ├── Notification │ │ └── Notification.php │ ├── Number │ │ └── Number.php │ ├── README.md │ ├── Registry │ │ └── Registry.php │ ├── Security │ │ └── Token.php │ ├── Session │ │ └── Session.php │ ├── Text │ │ └── Text.php │ ├── Url │ │ └── Url.php │ ├── Validation │ │ └── Valid.php │ ├── Zip │ │ └── Zip.php │ ├── _logs │ │ └── .empty │ ├── changelog.txt │ └── license.txt ├── Idiorm │ └── ORM.php └── PHPMailer │ └── PHPMailer.php ├── plugins ├── .htaccess ├── blog │ ├── README.md │ ├── blog.plugin.php │ ├── install │ │ └── blog.manifest.xml │ ├── languages │ │ ├── en.lang.php │ │ ├── es.lang.php │ │ ├── pl.lang.php │ │ ├── ru.lang.php │ │ ├── sr.lang.php │ │ ├── tr.lang.php │ │ └── uk.lang.php │ ├── rss.php │ └── views │ │ └── frontend │ │ ├── block.view.php │ │ ├── breadcrumbs.view.php │ │ ├── index.view.php │ │ ├── pager.view.php │ │ ├── related_posts.view.php │ │ └── tags.view.php ├── box │ ├── backup │ │ ├── backup.admin.php │ │ ├── backup.plugin.php │ │ ├── install │ │ │ └── backup.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ └── views │ │ │ └── backend │ │ │ └── index.view.php │ ├── blocks │ │ ├── blocks.admin.php │ │ ├── blocks.plugin.php │ │ ├── install │ │ │ └── blocks.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── blocks.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ └── views │ │ │ └── backend │ │ │ ├── add.view.php │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ ├── dashboard │ │ ├── dashboard.admin.php │ │ ├── dashboard.plugin.php │ │ ├── install │ │ │ └── dashboard.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── ganalytics.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ └── uk.lang.php │ │ └── views │ │ │ └── backend │ │ │ ├── ga.view.php │ │ │ └── index.view.php │ ├── editor │ │ ├── editor.plugin.php │ │ ├── install │ │ │ └── editor.manifest.xml │ │ └── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ ├── emails │ │ ├── css │ │ │ ├── .htaccess │ │ │ └── inc.css │ │ ├── emails.admin.php │ │ ├── emails.plugin.php │ │ ├── install │ │ │ └── emails.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ └── uk.lang.php │ │ └── views │ │ │ ├── backend │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ │ │ └── emails │ │ │ └── email_layout.view.php │ ├── filesmanager │ │ ├── css │ │ │ ├── .htaccess │ │ │ └── style.css │ │ ├── filesmanager.admin.php │ │ ├── filesmanager.plugin.php │ │ ├── install │ │ │ └── filesmanager.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ ├── filesmanager.js │ │ │ └── fileuploader.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ └── views │ │ │ └── backend │ │ │ └── index.view.php │ ├── information │ │ ├── information.admin.php │ │ ├── information.plugin.php │ │ ├── install │ │ │ └── information.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ └── views │ │ │ └── backend │ │ │ └── index.view.php │ ├── menu │ │ ├── install │ │ │ └── menu.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── menu.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── menu.admin.php │ │ ├── menu.plugin.php │ │ └── views │ │ │ ├── backend │ │ │ ├── add.view.php │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ │ │ └── frontend │ │ │ └── index.view.php │ ├── pages │ │ ├── install │ │ │ └── pages.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── pages.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── pages.admin.php │ │ ├── pages.plugin.php │ │ └── views │ │ │ ├── backend │ │ │ ├── add.view.php │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ │ │ └── frontend │ │ │ ├── available_pages.view.php │ │ │ └── breadcrumbs.view.php │ ├── plugins │ │ ├── install │ │ │ └── plugins.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── plugins.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── plugins.admin.php │ │ ├── plugins.plugin.php │ │ └── views │ │ │ └── backend │ │ │ └── index.view.php │ ├── sitemap │ │ ├── install │ │ │ └── sitemap.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── sitemap.plugin.php │ │ └── views │ │ │ └── frontend │ │ │ └── index.view.php │ ├── snippets │ │ ├── install │ │ │ └── snippets.manifest.xml │ │ ├── js │ │ │ ├── .htaccess │ │ │ └── snippets.js │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── snippets.admin.php │ │ ├── snippets.plugin.php │ │ └── views │ │ │ └── backend │ │ │ ├── add.view.php │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ ├── system │ │ ├── install │ │ │ └── system.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── system.admin.php │ │ ├── system.plugin.php │ │ └── views │ │ │ └── backend │ │ │ └── index.view.php │ ├── themes │ │ ├── install │ │ │ └── themes.manifest.xml │ │ ├── languages │ │ │ ├── cs.lang.php │ │ │ ├── de.lang.php │ │ │ ├── en.lang.php │ │ │ ├── es.lang.php │ │ │ ├── fa.lang.php │ │ │ ├── fr.lang.php │ │ │ ├── hu.lang.php │ │ │ ├── id.lang.php │ │ │ ├── it.lang.php │ │ │ ├── ja.lang.php │ │ │ ├── ka-ge.lang.php │ │ │ ├── lt.lang.php │ │ │ ├── nl.lang.php │ │ │ ├── pl.lang.php │ │ │ ├── pt-br.lang.php │ │ │ ├── ru.lang.php │ │ │ ├── sk.lang.php │ │ │ ├── sr.lang.php │ │ │ ├── tr.lang.php │ │ │ ├── uk.lang.php │ │ │ └── zh-cn.lang.php │ │ ├── themes.admin.php │ │ ├── themes.plugin.php │ │ └── views │ │ │ └── backend │ │ │ ├── add.view.php │ │ │ ├── edit.view.php │ │ │ └── index.view.php │ └── users │ │ ├── install │ │ └── users.manifest.xml │ │ ├── js │ │ ├── .htaccess │ │ └── users.js │ │ ├── languages │ │ ├── cs.lang.php │ │ ├── de.lang.php │ │ ├── en.lang.php │ │ ├── es.lang.php │ │ ├── fa.lang.php │ │ ├── fr.lang.php │ │ ├── hu.lang.php │ │ ├── id.lang.php │ │ ├── it.lang.php │ │ ├── ja.lang.php │ │ ├── ka-ge.lang.php │ │ ├── lt.lang.php │ │ ├── nl.lang.php │ │ ├── pl.lang.php │ │ ├── pt-br.lang.php │ │ ├── ru.lang.php │ │ ├── sk.lang.php │ │ ├── sr.lang.php │ │ ├── tr.lang.php │ │ ├── uk.lang.php │ │ └── zh-cn.lang.php │ │ ├── users.admin.php │ │ ├── users.plugin.php │ │ └── views │ │ ├── backend │ │ ├── add.view.php │ │ ├── edit.view.php │ │ └── index.view.php │ │ └── frontend │ │ ├── edit.view.php │ │ ├── index.view.php │ │ ├── login.view.php │ │ ├── password_reset.view.php │ │ ├── profile.view.php │ │ ├── registration.view.php │ │ └── userspanel.view.php ├── captcha │ ├── captcha.plugin.php │ ├── crypt │ │ ├── .htaccess │ │ ├── cryptographp.cfg.php │ │ ├── cryptographp.fct.php │ │ ├── cryptographp.inc.php │ │ ├── cryptographp.php │ │ ├── fonts │ │ │ ├── index.html │ │ │ ├── luggerbu.ttf │ │ │ └── luggerbu.txt │ │ ├── images │ │ │ ├── .htaccess │ │ │ ├── Thumbs.db │ │ │ ├── erreur1.png │ │ │ ├── erreur2.png │ │ │ ├── erreur3.png │ │ │ ├── index.html │ │ │ └── reload.png │ │ ├── index.html │ │ └── index.php │ ├── install │ │ ├── captcha.install.php │ │ ├── captcha.manifest.xml │ │ └── captcha.uninstall.php │ └── languages │ │ ├── cs.lang.php │ │ ├── de.lang.php │ │ ├── en.lang.php │ │ ├── es.lang.php │ │ ├── fa.lang.php │ │ ├── fr.lang.php │ │ ├── id.lang.php │ │ ├── it.lang.php │ │ ├── ka-ge.lang.php │ │ ├── lt.lang.php │ │ ├── nl.lang.php │ │ ├── pl.lang.php │ │ ├── pt-br.lang.php │ │ ├── ru.lang.php │ │ ├── sk.lang.php │ │ ├── sr.lang.php │ │ ├── tr.lang.php │ │ ├── uk.lang.php │ │ └── zh-cn.lang.php ├── codemirror │ ├── LICENSE │ ├── README.md │ ├── codemirror.plugin.php │ ├── codemirror │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .htaccess │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addon │ │ │ ├── comment │ │ │ │ ├── comment.js │ │ │ │ └── continuecomment.js │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── display │ │ │ │ ├── fullscreen.css │ │ │ │ ├── fullscreen.js │ │ │ │ └── placeholder.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ ├── closetag.js │ │ │ │ ├── continuelist.js │ │ │ │ ├── matchbrackets.js │ │ │ │ ├── matchtags.js │ │ │ │ └── trailingspace.js │ │ │ ├── fold │ │ │ │ ├── brace-fold.js │ │ │ │ ├── comment-fold.js │ │ │ │ ├── foldcode.js │ │ │ │ ├── foldgutter.css │ │ │ │ ├── foldgutter.js │ │ │ │ ├── indent-fold.js │ │ │ │ └── xml-fold.js │ │ │ ├── hint │ │ │ │ ├── anyword-hint.js │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── pig-hint.js │ │ │ │ ├── python-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ ├── sql-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint │ │ │ │ ├── coffeescript-lint.js │ │ │ │ ├── css-lint.js │ │ │ │ ├── javascript-lint.js │ │ │ │ ├── json-lint.js │ │ │ │ ├── lint.css │ │ │ │ └── lint.js │ │ │ ├── merge │ │ │ │ ├── dep │ │ │ │ │ └── diff_match_patch.js │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── mode │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ ├── multiplex_test.js │ │ │ │ └── overlay.js │ │ │ ├── runmode │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── scroll │ │ │ │ └── scrollpastend.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── selection │ │ │ │ ├── active-line.js │ │ │ │ └── mark-selection.js │ │ │ ├── tern │ │ │ │ ├── tern.css │ │ │ │ ├── tern.js │ │ │ │ └── worker.js │ │ │ └── wrap │ │ │ │ └── hardwrap.js │ │ ├── bower.json │ │ ├── index.html │ │ ├── keymap │ │ │ ├── emacs.js │ │ │ ├── extra.js │ │ │ └── vim.js │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── mode │ │ │ ├── apl │ │ │ │ ├── apl.js │ │ │ │ └── index.html │ │ │ ├── asterisk │ │ │ │ ├── asterisk.js │ │ │ │ └── index.html │ │ │ ├── clike │ │ │ │ ├── clike.js │ │ │ │ ├── index.html │ │ │ │ └── scala.html │ │ │ ├── clojure │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── cobol │ │ │ │ ├── cobol.js │ │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── commonlisp │ │ │ │ ├── commonlisp.js │ │ │ │ └── index.html │ │ │ ├── css │ │ │ │ ├── css.js │ │ │ │ ├── index.html │ │ │ │ ├── scss.html │ │ │ │ ├── scss_test.js │ │ │ │ └── test.js │ │ │ ├── d │ │ │ │ ├── d.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── dtd │ │ │ │ ├── dtd.js │ │ │ │ └── index.html │ │ │ ├── ecl │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── eiffel │ │ │ │ ├── eiffel.js │ │ │ │ └── index.html │ │ │ ├── erlang │ │ │ │ ├── erlang.js │ │ │ │ └── index.html │ │ │ ├── fortran │ │ │ │ ├── fortran.js │ │ │ │ └── index.html │ │ │ ├── gas │ │ │ │ ├── gas.js │ │ │ │ └── index.html │ │ │ ├── gfm │ │ │ │ ├── gfm.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── gherkin │ │ │ │ ├── gherkin.js │ │ │ │ └── index.html │ │ │ ├── go │ │ │ │ ├── go.js │ │ │ │ └── index.html │ │ │ ├── groovy │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haml │ │ │ │ ├── haml.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── haskell │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── haxe │ │ │ │ ├── haxe.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── http │ │ │ │ ├── http.js │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── jade │ │ │ │ ├── index.html │ │ │ │ └── jade.js │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── julia │ │ │ │ ├── index.html │ │ │ │ └── julia.js │ │ │ ├── less │ │ │ │ ├── index.html │ │ │ │ └── less.js │ │ │ ├── livescript │ │ │ │ ├── index.html │ │ │ │ ├── livescript.js │ │ │ │ └── livescript.ls │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── meta.js │ │ │ ├── mirc │ │ │ │ ├── index.html │ │ │ │ └── mirc.js │ │ │ ├── nginx │ │ │ │ ├── index.html │ │ │ │ └── nginx.js │ │ │ ├── ntriples │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── ocaml │ │ │ │ ├── index.html │ │ │ │ └── ocaml.js │ │ │ ├── octave │ │ │ │ ├── index.html │ │ │ │ └── octave.js │ │ │ ├── pascal │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── pegjs │ │ │ │ ├── index.html │ │ │ │ └── pegjs.js │ │ │ ├── perl │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php │ │ │ │ ├── index.html │ │ │ │ └── php.js │ │ │ ├── pig │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── properties │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── python │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── q │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ ├── changes.js │ │ │ │ │ └── index.html │ │ │ │ └── spec │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spec.css │ │ │ │ │ └── spec.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── index.html │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── sass │ │ │ │ ├── index.html │ │ │ │ └── sass.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ │ ├── index.html │ │ │ │ └── shell.js │ │ │ ├── sieve │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── smartymixed │ │ │ │ ├── index.html │ │ │ │ └── smartymixed.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── tcl │ │ │ │ ├── index.html │ │ │ │ └── tcl.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── toml │ │ │ │ ├── index.html │ │ │ │ └── toml.js │ │ │ ├── turtle │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── vb │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ │ ├── index.html │ │ │ │ └── verilog.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ ├── package.json │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── night.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ └── xq-light.css │ └── install │ │ └── codemirror.manifest.xml ├── markdown │ ├── README.md │ ├── install │ │ └── markdown.manifest.xml │ ├── markdown.plugin.php │ └── php-markdown │ │ ├── License.md │ │ ├── Michelf │ │ ├── Markdown.php │ │ └── MarkdownExtra.php │ │ ├── Readme.md │ │ ├── Readme.php │ │ └── composer.json ├── markitup │ ├── install │ │ └── markitup.manifest.xml │ ├── markitup.plugin.php │ └── markitup │ │ ├── .htaccess │ │ ├── jquery.markitup.js │ │ ├── sets │ │ └── html │ │ │ ├── images │ │ │ ├── bold.png │ │ │ ├── clean.png │ │ │ ├── colors.png │ │ │ ├── h1.png │ │ │ ├── h2.png │ │ │ ├── h3.png │ │ │ ├── h4.png │ │ │ ├── h5.png │ │ │ ├── h6.png │ │ │ ├── italic.png │ │ │ ├── link.png │ │ │ ├── list-bullet.png │ │ │ ├── list-item.png │ │ │ ├── list-numeric.png │ │ │ ├── paragraph.png │ │ │ ├── picture.png │ │ │ ├── preview.png │ │ │ └── stroke.png │ │ │ ├── set.js │ │ │ └── style.css │ │ ├── skins │ │ └── simple │ │ │ ├── images │ │ │ ├── handle.png │ │ │ ├── menu.png │ │ │ └── submenu.png │ │ │ └── style.css │ │ └── templates │ │ ├── preview.css │ │ └── preview.html └── sandbox │ ├── install │ ├── sandbox.install.php │ ├── sandbox.manifest.xml │ └── sandbox.uninstall.php │ ├── languages │ ├── cs.lang.php │ ├── de.lang.php │ ├── en.lang.php │ ├── es.lang.php │ ├── fa.lang.php │ ├── fr.lang.php │ ├── id.lang.php │ ├── it.lang.php │ ├── ka-ge.lang.php │ ├── lt.lang.php │ ├── nl.lang.php │ ├── pl.lang.php │ ├── pt-br.lang.php │ ├── ru.lang.php │ ├── sk.lang.php │ ├── sr.lang.php │ ├── tr.lang.php │ ├── uk.lang.php │ └── zh-cn.lang.php │ ├── sandbox.admin.php │ ├── sandbox.plugin.php │ └── views │ ├── backend │ └── index.view.php │ └── frontend │ └── index.view.php ├── public ├── assets │ ├── css │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── chocolat.css │ │ ├── daterangepicker-bs3.css │ │ ├── icheck-blue.css │ │ ├── messenger-spinner.css │ │ ├── messenger-theme-flat.css │ │ └── messenger.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ ├── blue.png │ │ ├── chocolat │ │ │ ├── close.gif │ │ │ ├── closew.gif │ │ │ ├── left.gif │ │ │ ├── leftw.gif │ │ │ ├── loading.gif │ │ │ ├── loadingw.gif │ │ │ ├── right.gif │ │ │ └── rightw.gif │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fa.png │ │ │ ├── fr.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── it.png │ │ │ ├── ja.png │ │ │ ├── lt.png │ │ │ ├── nl.png │ │ │ ├── pl.png │ │ │ ├── pt-br.png │ │ │ ├── ru.png │ │ │ ├── sk.png │ │ │ ├── sr.png │ │ │ ├── tr.png │ │ │ ├── uk.png │ │ │ └── zh-cn.png │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── monstra-logo-256px.png │ │ └── monstra-logo.png │ └── js │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap.min.js │ │ ├── daterangepicker.js │ │ ├── icheck.min.js │ │ ├── jquery-2.1.0.min.map │ │ ├── jquery.chocolat.js │ │ ├── jquery.min.js │ │ ├── messenger-theme-flat.js │ │ ├── messenger.min.js │ │ └── moment.min.js ├── themes │ └── default │ │ ├── blog-post.template.php │ │ ├── blog.template.php │ │ ├── css │ │ └── default.css │ │ ├── footer-links.chunk.php │ │ ├── footer.chunk.php │ │ ├── header.chunk.php │ │ └── index.template.php └── uploads │ └── .empty ├── robots.txt ├── rss.php ├── sitemap.xml ├── storage ├── .htaccess ├── blocks │ └── .empty ├── database │ ├── menu.table.xml │ ├── options.table.xml │ ├── pages.table.xml │ ├── plugins.table.xml │ └── users.table.xml ├── emails │ ├── layout.email.php │ ├── new-password.email.php │ ├── new-user.email.php │ └── reset-password.email.php ├── pages │ ├── 1.page.txt │ ├── 2.page.txt │ └── 4.page.txt └── snippets │ └── google-analytics.snippet.php └── tmp ├── .htaccess ├── cache └── .empty ├── logs └── .empty └── minify ├── .empty └── .htaccess /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore os/app generated files 2 | Thumbs.db 3 | .DS_Store 4 | *.esproj 5 | *.project 6 | *.sublime-project 7 | *.sublime-workspace 8 | 9 | # ignore user .htaccess 10 | /.htaccess 11 | 12 | # ignore user sitemap 13 | /sitemap.xml 14 | 15 | # ignore user defines 16 | /monstra/boot/defines.php 17 | 18 | # ignore debug and custom themes 19 | /public/themes/* 20 | /admin/themes/* 21 | !/public/themes/default 22 | !/admin/themes/default 23 | 24 | # ignore user plugins 25 | /plugins/* 26 | !/plugins/box 27 | !/plugins/captcha 28 | !/plugins/markitup 29 | !/plugins/sandbox 30 | 31 | # ignore user files and folders 32 | /backups/* 33 | /public/* 34 | /storage/* 35 | /tmp/* -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012 - 2016 Monstra Content Management 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /admin/themes/default/js/default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Monstra JS module 3 | * 4 | * This source file is part of the Monstra Engine. More information, 5 | * documentation and tutorials can be found at http://monstra.org 6 | * 7 | * @package Monstra 8 | * 9 | * @author Romanenko Sergey / Awilum 10 | * @copyright 2012-2014 Romanenko Sergey / Awilum 11 | * 12 | * For the full copyright and license information, please view the LICENSE 13 | * file that was distributed with this source code. 14 | */ 15 | 16 | /* Confirm delete */ 17 | function confirmDelete(msg){var data=confirm(msg+" ?"); return data;} 18 | 19 | /* Messanger */ 20 | Messenger.options = { 21 | extraClasses: 'messenger-fixed messenger-on-bottom messenger-on-right', 22 | theme: 'flat' 23 | } -------------------------------------------------------------------------------- /backups/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/backups/.empty -------------------------------------------------------------------------------- /backups/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /engine/Plugin/Backend.php: -------------------------------------------------------------------------------- 1 | 8 | * @link http://monstra.org 9 | * 10 | * For the full copyright and license information, please view the LICENSE 11 | * file that was distributed with this source code. 12 | */ 13 | 14 | class Backend 15 | { 16 | public static function main() 17 | { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /engine/Plugin/Frontend.php: -------------------------------------------------------------------------------- 1 | 8 | * @link http://monstra.org 9 | * 10 | * For the full copyright and license information, please view the LICENSE 11 | * file that was distributed with this source code. 12 | */ 13 | 14 | 15 | class Frontend 16 | { 17 | public static function main() 18 | { 19 | } 20 | public static function title() 21 | { 22 | return ''; 23 | } 24 | public static function description() 25 | { 26 | return ''; 27 | } 28 | public static function keywords() 29 | { 30 | return ''; 31 | } 32 | public static function template() 33 | { 34 | return 'index'; 35 | } 36 | public static function content() 37 | { 38 | return ''; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /engine/_init.php: -------------------------------------------------------------------------------- 1 | '."\n"; 10 | } 11 | -------------------------------------------------------------------------------- /engine/boot/filters.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Error 6 | 43 | 44 | 45 |
46 |

Error

47 |
48 |

Aw, snap! An error has occurred while processing your request.

49 |
50 | 51 | 52 | -------------------------------------------------------------------------------- /libraries/Gelato/README.md: -------------------------------------------------------------------------------- 1 | # Gelato Library 2 | 3 | Gelato is a PHP5 library for kickass Web Applications. 4 | 5 | ## Links 6 | - [Site](http://gelato.monstra.org) 7 | - [Github Repository](https://github.com/MonstrLab/gelato) 8 | 9 | Copyright (C) 2013 Romanenko Sergey / Awilum [awilum@msn.com] -------------------------------------------------------------------------------- /libraries/Gelato/_logs/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/libraries/Gelato/_logs/.empty -------------------------------------------------------------------------------- /libraries/Gelato/changelog.txt: -------------------------------------------------------------------------------- 1 | Gelato 1.0.3, 2013-04-03 2 | ------------------------ 3 | - Html Class: obfuscate() method added. 4 | - Html Class: email() method added. 5 | - Html Class: missing $macros var added. 6 | 7 | Gelato 1.0.2, 2013-03-17 8 | ------------------------ 9 | - Added support for PHP 5.2.3 10 | 11 | Gelato 1.0.1, 2013-03-05 12 | ------------------------ 13 | - New constant GELATO_CLASS_LOADER instead of GELATO_AUTOLOADER 14 | - ErrorHanler Class Improvements. 15 | - Log Class Improvements. 16 | - ClassLoader: new method register() added. 17 | - Define __DIR__ constant for PHP 5.2.x 18 | 19 | Gelato 1.0.0, 2013-02-26 20 | ------------------------ 21 | - Initial release 22 | -------------------------------------------------------------------------------- /plugins/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /plugins/blog/README.md: -------------------------------------------------------------------------------- 1 | Blog 2 | ================ 3 | 4 | ### Usage 5 | 6 | #### Get Post 7 | 8 | 9 | #### Get Posts 10 | 11 | 12 | #### Get 5 Posts (could be any amount, 5 or 1 or 25): 13 | 14 | 15 | #### Get related Posts 16 | 17 | 18 | #### Get 4 latest posts from Blog 19 | 20 | 21 | #### Get Tags&Keywords 22 | 23 | 24 | #### Get Tags&Keywords for current page 25 | 26 | 27 | Get Post Title 28 | 29 | 30 | ### Shortcode for content 31 | 32 | #### Divided post into 2 parts (short and full) 33 | {cut} 34 | 35 | Example: 36 | 37 |

Best free themes for Monstra CMS at monstrathemes.com

38 | {cut} 39 |

There is going to display your content as blog post =)

40 | -------------------------------------------------------------------------------- /plugins/blog/install/blog.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/blog/blog.plugin.php 4 | active 5 | 15 6 | Blog 7 | Blog plugin for Monstra 8 | 1.7.3 9 | Awilum 10 | http://monstra.org/ 11 | -------------------------------------------------------------------------------- /plugins/blog/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Blog', 6 | 'Blog plugin for Monstra' => 'Blog plugin for Monstra', 7 | 'begin' => 'begin', 8 | 'end' => 'end', 9 | 'prev' => 'prev', 10 | 'next' => 'next', 11 | ) 12 | ); -------------------------------------------------------------------------------- /plugins/blog/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Blog', 6 | 'Blog plugin for Monstra' => 'Blog plugin for Monstra', 7 | 'begin' => 'comienzo', 8 | 'end' => 'final', 9 | 'prev' => 'anterior', 10 | 'next' => 'siguiente', 11 | ) 12 | ); 13 | -------------------------------------------------------------------------------- /plugins/blog/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Blog', 6 | 'Blog plugin for Monstra' => 'Wtyczka Blog dla systemu Monstra', 7 | 'begin' => 'początek', 8 | 'end' => 'koniec', 9 | 'prev' => 'poprzedni', 10 | 'next' => 'następny', 11 | ) 12 | ); -------------------------------------------------------------------------------- /plugins/blog/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Блог', 6 | 'Blog plugin for Monstra' => 'Плагин блога для Monstra', 7 | 'begin' => 'начало', 8 | 'end' => 'конец', 9 | 'prev' => 'назад', 10 | 'next' => 'вперед', 11 | 'Related posts' => 'Статьи по теме', 12 | ) 13 | ); -------------------------------------------------------------------------------- /plugins/blog/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 4 | 'Blog' => 'Blog', 5 | 'Blog plugin for Monstra' => 'Blog, dodatak za Monstra', 6 | 'begin' => 'početak', 7 | 'end' => 'kraj', 8 | 'prev' => 'predhodna', 9 | 'next' => 'sledeća', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/blog/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Günce', 6 | 'Blog plugin for Monstra' => 'Monstra için günce eklentisi', 7 | 'begin' => 'Baş', 8 | 'end' => 'Son', 9 | 'prev' => 'Önceki', 10 | 'next' => 'Sonraki', 11 | ) 12 | ); 13 | -------------------------------------------------------------------------------- /plugins/blog/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blog' => 'Блог', 6 | 'Blog plugin for Monstra' => 'Плагін блога для Monstra', 7 | 'begin' => 'початок', 8 | 'end' => 'кінець', 9 | 'prev' => 'назад', 10 | 'next' => 'вперед', 11 | 'Related posts' => 'Статті по темі', 12 | ) 13 | ); -------------------------------------------------------------------------------- /plugins/blog/views/frontend/block.view.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | 4 |
5 | 6 |
7 | -------------------------------------------------------------------------------- /plugins/blog/views/frontend/breadcrumbs.view.php: -------------------------------------------------------------------------------- 1 | 2 | ?tag=">   3 | 4 | ?tag="> 5 | -------------------------------------------------------------------------------- /plugins/blog/views/frontend/index.view.php: -------------------------------------------------------------------------------- 1 | 2 |

3 | / 4 |
5 | 6 |
7 | -------------------------------------------------------------------------------- /plugins/blog/views/frontend/pager.view.php: -------------------------------------------------------------------------------- 1 |

2 | $pages) $right_neighbour = $pages; 12 | 13 | if ($page > 1) { 14 | echo ' '.__('begin', 'blog').' ... '.__('prev', 'blog').' '; 15 | } 16 | 17 | for ($i=$left_neighbour; $i<=$right_neighbour; $i++) { 18 | if ($i != $page) { 19 | echo ' ' . $i . ' '; 20 | } else { 21 | echo ' ' . $i . ' '; 22 | } 23 | } 24 | 25 | if ($page < $pages) { 26 | echo ' '.__('next', 'blog').' ... '.__('end', 'blog').' '; 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /plugins/blog/views/frontend/related_posts.view.php: -------------------------------------------------------------------------------- 1 |

2 | : 3 |
4 | 5 |
6 | 7 |
-------------------------------------------------------------------------------- /plugins/blog/views/frontend/tags.view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/box/backup/backup.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/backup/backup.plugin.php 4 | active 5 | 8 6 | Backup 7 | Backup plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Zálohy', 6 | 'Backup' => 'Zálohy', 7 | 'Create Backup' => 'Vytvořit zálohu', 8 | 'Delete' => 'Vymazat', 9 | 'storage' => 'Storage/Obsah diskového místa', 10 | 'public' => 'Veřejné', 11 | 'plugins' => 'Pluginy', 12 | 'Size' => 'Velikost', 13 | 'Actions' => 'Akce', 14 | 'Delete backup: :backup' => 'Vymazat zálohu: :backup', 15 | 'Creating...' => 'Vytvářím...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backups', 6 | 'Backup' => 'Backup', 7 | 'Create Backup' => 'Erstelle Backup', 8 | 'Delete' => 'Löschen', 9 | 'storage' => 'Speicher', 10 | 'public' => 'Öffentliche', 11 | 'plugins' => 'Plugins', 12 | 'Size' => 'Größe', 13 | 'Actions' => 'Aktionen', 14 | 'Delete backup: :backup' => 'Lösche Backup: :backup', 15 | 'Creating...' => 'Erstellen...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backups', 6 | 'Backup' => 'Backup', 7 | 'Backup Date' => 'Backup Date', 8 | 'Create Backup' => 'Create Backup', 9 | 'Restore' => 'Restore', 10 | 'Delete' => 'Delete', 11 | 'storage' => 'storage', 12 | 'public' => 'public', 13 | 'plugins' => 'plugins', 14 | 'Size' => 'Size', 15 | 'Actions' => 'Actions', 16 | 'Delete backup: :backup' => 'Delete backup: :backup', 17 | 'Creating...' => 'Creating...', 18 | 'Backup was created' => 'Backup was created', 19 | 'Backup was not created' => 'Backup was not created', 20 | 'Backup was deleted' => 'Backup was deleted', 21 | 'Backup was not deleted' => 'Backup was not deleted', 22 | 'Backup was restored' => 'Backup was restored', 23 | 'Unzip error' => 'Unzip error', 24 | 'Backup was not restored' => 'Backup was not restored', 25 | ) 26 | ); 27 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backups', 6 | 'Backup' => 'Backup', 7 | 'Backup Date' => 'Fecha del backup', 8 | 'Create Backup' => 'Crear backup', 9 | 'Restore' => 'Restaurar', 10 | 'Delete' => 'Eliminar', 11 | 'storage' => 'Almacenamiento', 12 | 'public' => 'público', 13 | 'plugins' => 'plugins', 14 | 'Size' => 'Tamaño', 15 | 'Actions' => 'Acciones', 16 | 'Delete backup: :backup' => 'Eliminar backup: :backup', 17 | 'Creating...' => 'Creando...', 18 | 'Backup was created' => 'El backup fue creado', 19 | 'Backup was not created' => 'El backup no fue creado', 20 | 'Backup was deleted' => 'El backup fue eliminado', 21 | 'Backup was not deleted' => 'El backup no fue eliminado', 22 | 'Backup was restored' => 'El backup fue restaurado', 23 | 'Unzip error' => 'Error de descompresión', 24 | 'Backup was not restored' => 'El backup no fue restaurado', 25 | ) 26 | ); 27 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'پشتیبان گیری', 6 | 'Backup Date' => 'تاریخ پشتیبان گیری', 7 | 'Create Backup' => 'ایجاد نسخه پشتیبان', 8 | 'Delete' => 'حذف', 9 | 'storage' => 'ذخیره سازی', 10 | 'public' => 'عمومی', 11 | 'plugins' => 'پلاگین', 12 | 'Size' => 'اندازه', 13 | 'Actions' => 'عملیات', 14 | 'Delete backup: :backup' => 'حذف نسخه پشتیبان: :backup', 15 | 'Creating...' => 'ایجاد...', 16 | ) 17 | ); -------------------------------------------------------------------------------- /plugins/box/backup/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Sauvegardes', 6 | 'Backup date' => 'Date de la sauvegarde', 7 | 'Create backup' => 'Créer une sauvegarde', 8 | 'Delete' => 'Supprimer', 9 | 'storage' => 'stockage', 10 | 'public' => 'public', 11 | 'plugins' => 'plugins', 12 | 'Size' => 'Taille', 13 | 'Actions' => 'Actions', 14 | 'Delete backup: :backup' => 'Supprimer la sauvegarde: :backup', 15 | 'Creating...' => 'Création...', 16 | ) 17 | ); -------------------------------------------------------------------------------- /plugins/box/backup/languages/hu.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Biztonsági mentések', 6 | 'Backup date' => 'Biztonsági mentés dátuma', 7 | 'Create Backup' => 'Biztonsági mentés készítése', 8 | 'Delete' => 'Töröl', 9 | 'storage' => 'tárol', 10 | 'public' => 'nyilvános', 11 | 'plugins' => 'pluginok', 12 | 'Size' => 'Méret', 13 | 'Actions' => 'Műveletek', 14 | 'Delete backup: :backup' => 'Biztonsági mentés törlése: :backup', 15 | 'Creating...' => 'Készítés...', 16 | ) 17 | ); -------------------------------------------------------------------------------- /plugins/box/backup/languages/id.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Cadangan', 6 | 'Backup date' => 'Tanggal Cadangan', 7 | 'Create Backup' => 'Buat Cadangan', 8 | 'Delete' => 'Hapus', 9 | 'storage' => 'Penyimpanan', 10 | 'public' => 'Umum', 11 | 'plugins' => 'Plugins', 12 | 'Size' => 'Ukuran', 13 | 'Actions' => 'Tindakan', 14 | 'Delete backup: :backup' => 'Hapus Cadangan: :backup', 15 | 'Creating...' => 'Dibuat...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backup', 6 | 'Backup' => 'Backup', 7 | 'Create Backup' => 'Crea Backup', 8 | 'Delete' => 'Elimina', 9 | 'storage' => 'dati', 10 | 'public' => 'pubblica', 11 | 'plugins' => 'plugin', 12 | 'Size' => 'Dimensione', 13 | 'Actions' => 'Azioni', 14 | 'Delete backup: :backup' => 'Elimina backup: :backup', 15 | 'Creating...' => 'Creazione...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/ja.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'バックアップ', 6 | 'Backup Date' => 'バックアップ日', 7 | 'Create Backup' => 'バックアップの作成', 8 | 'Delete' => '削除', 9 | 'storage' => 'ストレージ', 10 | 'public' => '公開', 11 | 'plugins' => 'プラグイン', 12 | 'Size' => 'サイズ', 13 | 'Actions' => 'アクション', 14 | 'Delete backup: :backup' => 'バックアップの削除: :backup', 15 | 'Creating...' => '作成中...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Atsarginės kopijos', 6 | 'Backup' => 'Atsarginės kopijos data', 7 | 'Create Backup' => 'Sukurti atsarginę kopiją', 8 | 'Delete' => 'Ištrinti', 9 | 'storage' => 'storage', 10 | 'public' => 'public', 11 | 'plugins' => 'plugins', 12 | 'Size' => 'Dydis', 13 | 'Actions' => 'Veiksmai', 14 | 'Delete backup: :backup' => 'Ištrinti: :backup', 15 | 'Creating...' => 'Kuriama...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backups', 6 | 'Backup' => 'Backup', 7 | 'Create Backup' => 'Maak backup', 8 | 'Delete' => 'Verwijderen', 9 | 'storage' => 'Opslag', 10 | 'public' => 'Publiek', 11 | 'plugins' => 'Plugins', 12 | 'Size' => 'Grootte', 13 | 'Actions' => 'Acties', 14 | 'Delete backup: :backup' => 'Verwijder backup: :backup', 15 | 'Creating...' => 'Backup wordt gemaakt...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Kopie zapasowe', 6 | 'Backup Date' => 'Data kopii zapasowej', 7 | 'Create Backup' => 'Utwórz kopię zapasową', 8 | 'Delete' => 'Usuń', 9 | 'storage' => 'magazyn', 10 | 'public' => 'publiczny', 11 | 'plugins' => 'wtyczki', 12 | 'Size' => 'Rozmiar', 13 | 'Actions' => 'Akcje', 14 | 'Delete backup: :backup' => 'Czy napewno usunąć kopię zapasową: :backup', 15 | 'Creating...' => 'Tworzenie kopii zapasowej...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Backups', 6 | 'Backup' => 'Backup', 7 | 'Create Backup' => 'Criar Backup', 8 | 'Delete' => 'Deletar', 9 | 'storage' => 'storage', 10 | 'public' => 'public', 11 | 'plugins' => 'plugins', 12 | 'Size' => 'Tamanho', 13 | 'Actions' => 'Ações', 14 | 'Delete backup: :backup' => 'Deletar o backup: :backup', 15 | 'Creating...' => 'Criando backup...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Бекапы', 6 | 'Backup' => 'Бекап', 7 | 'Create Backup' => 'Сделать бекап', 8 | 'Delete' => 'Удалить', 9 | 'storage' => 'данные', 10 | 'public' => 'публичная', 11 | 'plugins' => 'плагины', 12 | 'Size' => 'Размер', 13 | 'Actions' => 'Действия', 14 | 'Delete backup: :backup' => 'Удалить бекап: :backup', 15 | 'Creating...' => 'Создание...', 16 | 'Backup was deleted' => 'Бекап не был создан', 17 | 'Backup was created' => 'Бекап был создан', 18 | 'Backup was not restored' => 'Бекап не был восстановлен', 19 | 'Backup was restored' => 'Бекап был восстановлен', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Zálohy', 6 | 'Backup' => 'Zálohy', 7 | 'Create Backup' => 'Vytvoriť Zálohu', 8 | 'Delete' => 'Vymazať', 9 | 'storage' => 'Storage/Obsah diskového miesta', 10 | 'public' => 'Verejné', 11 | 'plugins' => 'Pluginy', 12 | 'Size' => 'Veľkosť', 13 | 'Actions' => 'Akcie', 14 | 'Delete backup: :backup' => 'Vymazať zálohu: :backup', 15 | 'Creating...' => 'Vytváram...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Bekapovi', 6 | 'Backup' => 'Backap', 7 | 'Create Backup' => 'Kreiraj Bekap', 8 | 'Delete' => 'Obriši', 9 | 'storage' => 'lokacija arhive', 10 | 'public' => 'Javno', 11 | 'plugins' => 'Dodaci', 12 | 'Size' => 'Veličina', 13 | 'Actions' => 'Akcija', 14 | 'Delete backup: :backup' => 'Obriši bekap: :backup', 15 | 'Creating...' => 'Kreiranje...', 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Yedekler', 6 | 'Backup' => 'Yedek', 7 | 'Backup Date' => 'Yedekleme Tarihi', 8 | 'Create Backup' => 'Yedek Al', 9 | 'Delete' => 'Sil', 10 | 'Restore' => 'Geri Yükle', 11 | 'storage' => 'depo', 12 | 'public' => 'genel', 13 | 'plugins' => 'eklentiler', 14 | 'Size' => 'Boyut', 15 | 'Actions' => 'Eylemler', 16 | 'Delete backup: :backup' => ':backup adlı yedek silinsin mi', 17 | 'Creating...' => 'Oluşturuluyor...', 18 | 'Backup was created' => 'Yedek oluşturuldu', 19 | 'Backup was not created' => 'Yedek oluşturulmadı', 20 | 'Backup was deleted' => 'Yedek silindi', 21 | 'Backup was not deleted' => 'Yedek silinmedi', 22 | 'Backup was restored' => 'Yedek geri yüklendi', 23 | 'Unzip error' => 'Sıkıştırılmış yedeği açma (unzip) hatası', 24 | 'Backup was not restored' => 'Yedek geri yüklenmedi', 25 | ) 26 | ); 27 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => 'Бекапи', 6 | 'Backup' => 'Бекап', 7 | 'Create Backup' => 'Створити бекап', 8 | 'Delete' => 'Видалити', 9 | 'storage' => 'дані', 10 | 'public' => 'публічна', 11 | 'plugins' => 'плагіни', 12 | 'Size' => 'Розмір', 13 | 'Actions' => 'Дії', 14 | 'Delete backup: :backup' => 'Видалити бекап: :backup', 15 | 'Creating...' => 'Створення...', 16 | 'Backup was deleted' => 'Бекап не був створений', 17 | 'Backup was created' => 'Бекап був створений', 18 | 'Backup was not restored' => 'Бекап не був відновлений', 19 | 'Backup was restored' => 'Бекап був відновлений', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/backup/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Backups' => '备份', 6 | 'Backup Date' => '备份日期', 7 | 'Create Backup' => '创建备份', 8 | 'Delete' => '删除', 9 | 'storage' => '存储', 10 | 'public' => '公开', 11 | 'plugins' => '插件', 12 | 'Size' => '大小', 13 | 'Actions' => '操作', 14 | 'Delete backup: :backup' => '删除备份: :backup', 15 | 'Creating...' => '正在创建...', 16 | ) 17 | ); -------------------------------------------------------------------------------- /plugins/box/blocks/install/blocks.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/blocks/blocks.plugin.php 4 | active 5 | 6 6 | Blocks 7 | Blocks manager plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/blocks/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/blocks/js/blocks.js: -------------------------------------------------------------------------------- 1 | if (typeof $.monstra == 'undefined') $.monstra = {}; 2 | 3 | $.monstra.blocks = { 4 | 5 | init: function() { }, 6 | 7 | showEmbedCodes: function(name) { 8 | $('#shortcode').html('{block get="'+name+'"}'); 9 | $('#phpcode').html('<?php echo Block::get("'+name+'"); ?>'); 10 | $('#embedCodes').modal(); 11 | } 12 | 13 | }; 14 | 15 | 16 | $(document).ready(function(){ 17 | $.monstra.blocks.init(); 18 | }); -------------------------------------------------------------------------------- /plugins/box/blocks/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Blocks' => '版块', 6 | 'Blocks manager' => '版块管理', 7 | 'Delete' => '删除', 8 | 'Edit' => '编辑', 9 | 'Name' => '名称', 10 | 'Create New Block' => '创建新版块', 11 | 'New Block' => '新版块', 12 | 'Edit Block' => '编辑版块', 13 | 'Save' => '保存', 14 | 'Save and Exit' => '保存并退出', 15 | 'Actions' => '操作', 16 | 'Required field' => '必填字段', 17 | 'This block already exists' => '此版块已存在', 18 | 'This block does not exist' => '此版块不存在', 19 | 'Delete block: :block' => '删除版块: :block', 20 | 'Block content' => '版块内容', 21 | 'Block :name deleted' => '版块 :name 已删除', 22 | 'Your changes to the block :name have been saved.' => '您修改的版块 :name 已保存。', 23 | 'Delete block: :block' => '删除版块: :block', 24 | 'View Embed Code' => '查看嵌入代码', 25 | 'Embed Code' => '嵌入代码', 26 | 'Shortcode' => '短代码', 27 | 'PHP Code' => 'PHP 代码', 28 | ) 29 | ); 30 | -------------------------------------------------------------------------------- /plugins/box/dashboard/dashboard.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/dashboard/dashboard.plugin.php 4 | active 5 | 15 6 | Dashboard 7 | Dashboard plugin for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | -------------------------------------------------------------------------------- /plugins/box/dashboard/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Dashboard', 6 | 'Dashboard plugin for Monstra' => 'Dashboard plugin pro Monstra', 7 | 'Welcome back' => 'Vítejte zpět', 8 | 'Create New' => 'Vytvořit nový', 9 | 'Upload File' => 'Nahrát soubor', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Dashboard', 6 | 'Dashboard plugin for Monstra' => 'Dashboard plugin für Monstra', 7 | 'Welcome back' => 'Willkommen zurück', 8 | 'Create New' => 'Erstelle neue', 9 | 'Upload File' => 'Datei hochladen', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Dashboard', 6 | 'Dashboard plugin for Monstra' => 'Dashboard plugin for Monstra', 7 | 'Welcome back' => 'Welcome back', 8 | 'Create New' => 'Create New', 9 | 'Upload File' => 'Upload File', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Escritorio', 6 | 'Dashboard plugin for Monstra' => 'Dashboard plugin for Monstra', 7 | 'Welcome back' => 'Bienvenido nuevamente', 8 | 'Create New' => 'Crear nuevo', 9 | 'Upload File' => 'Subir archivo', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'პანელი', 6 | 'Dashboard plugin for Monstra' => 'პანელი Monstra-თვის', 7 | 'Welcome back' => 'მოგესალმებით', 8 | 'Create New' => 'დამატება', 9 | 'Upload File' => 'ფაილის ატვირთვა', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Kokpit', 6 | 'Dashboard plugin for Monstra' => 'Wtyczka kokpitu dla systemu Monstra', 7 | 'Welcome back' => 'Witam ponownie', 8 | 'Create New' => 'Utwórz nowy', 9 | 'Upload File' => 'Prześlij plik', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Панель', 6 | 'Dashboard plugin for Monstra' => 'Панель для Monstra', 7 | 'Welcome back' => 'Добро пожаловать', 8 | 'Create New' => 'Добавить', 9 | 'Upload File' => 'Загрузить Файл', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 4 | 'Dashboard' => 'Komandna tabla', 5 | 'Dashboard plugin for Monstra' => 'Komandna tabla dodatak za Monstra', 6 | 'Welcome back' => 'Dobrodošli natrag', 7 | 'Create New' => 'Kreiraj novo', 8 | 'Upload File' => 'Otpremi fajl', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Pano', 6 | 'Dashboard plugin for Monstra' => 'Monstra için pano eklentisi', 7 | 'Welcome back' => 'Merhaba', 8 | 'Create New' => 'Yeni Oluştur', 9 | 'Upload File' => 'Dosya Yükle', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/dashboard/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Dashboard' => 'Панель', 6 | 'Dashboard plugin for Monstra' => 'Панель для Monstra', 7 | 'Welcome back' => 'Ласкаво просимо', 8 | 'Create New' => 'Додати', 9 | 'Upload File' => 'Завантажити файл', 10 | ) 11 | ); 12 | -------------------------------------------------------------------------------- /plugins/box/editor/editor.plugin.php: -------------------------------------------------------------------------------- 1 |
'); 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /plugins/box/editor/install/editor.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/editor/editor.plugin.php 4 | active 5 | 1 6 | Editor 7 | Editor plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor Plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'ویرایشگر', 6 | 'Editor plugin' => 'پلاگین ویرایشگر', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editeur', 6 | 'Editor plugin' => 'Plugin éditeur', 7 | ) 8 | ); -------------------------------------------------------------------------------- /plugins/box/editor/languages/hu.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Szerkesztő', 6 | 'Editor plugin' => 'Szerkesztő bővítmény', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/ja.lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/box/editor/languages/ja.lang.php -------------------------------------------------------------------------------- /plugins/box/editor/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 4 | 'Editor' => 'რედაქტორი', 5 | 'Editor plugin' => 'პლაგინი რედაქტორი', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Redaktorius', 6 | 'Editor plugin' => 'Redaktoriaus papildinys', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor Plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Edytor', 6 | 'Editor plugin' => 'Wtyczka edytora', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Plugin do editor', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Редактор', 6 | 'Editor plugin' => 'Редактор плагин', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Editor', 6 | 'Editor plugin' => 'Editor plugin', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | 2 | array( 6 | 'Editor' => 'Editor', 7 | 'Editor plugin' => 'Editor dodatak', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Düzenleyici', 6 | 'Editor plugin' => 'Düzenleyici eklentisi', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => 'Редактор', 6 | 'Editor plugin' => 'Редактор плагіну', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/editor/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Editor' => '编辑器', 6 | 'Editor plugin' => '编辑器插件', 7 | ) 8 | ); 9 | -------------------------------------------------------------------------------- /plugins/box/emails/css/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/emails/emails.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/emails/emails.plugin.php 4 | active 5 | 15 6 | Emails 7 | Emails plugin for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Emaily', 6 | 'Emails plugin for Monstra' => 'Email plugin pro Monstra', 7 | 'Edit Layout' => 'Upravit layout', 8 | 'Email templates' => 'Vzory emailů', 9 | 'Edit' => 'Upravit', 10 | 'Edit Email Template' => 'Upravit vzory emailů', 11 | 'Name' => 'Název', 12 | 'Email template content' => 'Obsah vzoru emailu', 13 | 'Save and Exit' => 'Uložit a ukončit', 14 | 'Save' => 'Uložit', 15 | 'Cancel' => 'Zrušit', 16 | 'This email template does not exist' => 'Tento vzor emailu neexistuje', 17 | 'Your changes to the email template :name have been saved.' => 'Vaše změny vzoru emailu :name byly uloženy.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Emails', 6 | 'Emails plugin for Monstra' => 'Email Plugin für Monstra', 7 | 'Edit Layout' => 'Bearbeite Layout', 8 | 'Email templates' => 'Email Templates', 9 | 'Edit' => 'Bearbeiten', 10 | 'Edit Email Template' => 'Bearbeite Email Template', 11 | 'Name' => 'Name', 12 | 'Email template content' => 'Email Template Inhalt', 13 | 'Save and Exit' => 'Speichern und Beenden', 14 | 'Save' => 'Speichern', 15 | 'Cancel' => 'Abbrechen', 16 | 'This email template does not exist' => 'Dieses Email Template existiert nicht', 17 | 'Your changes to the email template :name have been saved.' => 'Deine Änderung am Email Template :name wurden gespeichert.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Emails', 6 | 'Emails plugin for Monstra' => 'Emails plugin for Monstra', 7 | 'Edit Layout' => 'Edit Layout', 8 | 'Email templates' => 'Email templates', 9 | 'Edit' => 'Edit', 10 | 'Edit Email Template' => 'Edit Email Template', 11 | 'Name' => 'Name', 12 | 'Email template content' => 'Email template content', 13 | 'Save and Exit' => 'Save and Exit', 14 | 'Save' => 'Save', 15 | 'Cancel' => 'Cancel', 16 | 'This email template does not exist' => 'This email template does not exist', 17 | 'Your changes to the email template :name have been saved.' => 'Your changes to the email template :name have been saved.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Emails', 6 | 'Emails plugin for Monstra' => 'Emails plugin for Monstra', 7 | 'Edit Layout' => 'Editar diseño', 8 | 'Email templates' => 'Plantillas de email', 9 | 'Edit' => 'Editar', 10 | 'Edit Email Template' => 'Editar plantilla de email', 11 | 'Name' => 'Nombre', 12 | 'Email template content' => 'Contenido de la plantilla de email', 13 | 'Save and Exit' => 'Guardar y salir', 14 | 'Save' => 'Guardar', 15 | 'Cancel' => 'Cancelar', 16 | 'This email template does not exist' => 'Esta plantilla de email no existe', 17 | 'Your changes to the email template :name have been saved.' => 'Tus cambios en la plantilla de email :name han sido guardados.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 4 | 'Emails' => 'ელ-ფოსტები', 5 | 'Emails plugin for Monstra' => 'პლაგინი ელ-ფოსტები Monstra-თვის', 6 | 'Edit Layout' => 'ნიმუშის რედაქტირება', 7 | 'Email templates' => 'წერილების ნიმუში', 8 | 'Edit' => 'რედაქტირება', 9 | 'Edit Email Template' => 'ელ-ფოსტების ნიმუშის რედაქტირება', 10 | 'Name' => 'სახელი', 11 | 'Email template content' => 'ელ-ფოსტის კონტენტის ნიმუში', 12 | 'Save and Exit' => 'შენახვა და შემდეგ გამოსვლა', 13 | 'Save' => 'შენახვა', 14 | 'Cancel' => 'გაუქმება', 15 | 'This email template does not exist' => 'ასეთი ელ-ფოსტის ნიმუში არ არსებობს', 16 | 'Your changes to the email template :name have been saved.' => 'ელ-ფოსტის ნიმუშის ცვლილებები :name დამახსოვრებულია.', 17 | ) 18 | ); 19 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Wiadomości e-mail', 6 | 'Emails plugin for Monstra' => 'Wtyczka wiadomości e-mail dla systemu Monstra', 7 | 'Edit Layout' => 'Edit Layout', 8 | 'Email templates' => 'Email templates', 9 | 'Edit' => 'Edit', 10 | 'Edit Email Template' => 'Edit Email Template', 11 | 'Name' => 'Name', 12 | 'Email template content' => 'Email template content', 13 | 'Save and Exit' => 'Save and Exit', 14 | 'Save' => 'Save', 15 | 'Cancel' => 'Cancel', 16 | 'This email template does not exist' => 'This email template does not exist', 17 | 'Your changes to the email template :name have been saved.' => 'Your changes to the email template :name have been saved.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Письма', 6 | 'Emails plugin for Monstra' => 'Плагин emails для Monstra', 7 | 'Edit Layout' => 'Редактировать Шаблон', 8 | 'Email templates' => 'Шаблоны Писем', 9 | 'Edit' => 'Редактировать', 10 | 'Edit Email Template' => 'Редактировать Шаблоны Письма', 11 | 'Name' => 'Название', 12 | 'Email template content' => 'Конент Шаблона Письма', 13 | 'Save and Exit' => 'Сохранить и выйты', 14 | 'Save' => 'Сохранить', 15 | 'Cancel' => 'Отменить', 16 | 'This email template does not exist' => 'Этот емейл шаблон отсутствует', 17 | 'Your changes to the email template :name have been saved.' => 'Ваши изменения к емейл шаблону :name были сохранены.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 4 | 'Emails' => 'Email', 5 | 'Emails plugin for Monstra' => 'Email dodatak za Monstra', 6 | 'Edit Layout' => 'Izmeni izgled', 7 | 'Email templates' => 'Email šabloni', 8 | 'Edit' => 'Izmeni', 9 | 'Edit Email Template' => 'Izmeni izgled šablonu', 10 | 'Name' => 'Ime', 11 | 'Email template content' => 'Email sadržaj šablona', 12 | 'Save and Exit' => 'Sačuvaj i izađi', 13 | 'Save' => 'Sačuvaj', 14 | 'Cancel' => 'Otkaži', 15 | 'This email template does not exist' => 'Ovaj šablon ne postoji', 16 | 'Your changes to the email template :name have been saved.' => 'Tvoje promene na šablonu :name su uspešno sačuvane.', 17 | ) 18 | ); 19 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'E-postalar', 6 | 'Emails plugin for Monstra' => 'Monstra için e-posta eklentisi', 7 | 'Edit Layout' => 'Mizanpajı Düzenle', 8 | 'Email templates' => 'E-posta şablonları', 9 | 'Edit' => 'Düzenle', 10 | 'Edit Email Template' => 'E-posta Şablonunu Düzenle', 11 | 'Name' => 'Ad', 12 | 'Email template content' => 'E-posta şablonu içeriği', 13 | 'Save and Exit' => 'Kaydet ve Çık', 14 | 'Save' => 'Kaydet', 15 | 'Cancel' => 'Vazgeç', 16 | 'This email template does not exist' => 'Bu e-posta şablonu bulunamadı', 17 | 'Your changes to the email template :name have been saved.' => 'Değişiklikleriniz :name adlı e-posta şablonuna kaydedildi.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Emails' => 'Листи', 6 | 'Emails plugin for Monstra' => 'Плагін emails для Monstra', 7 | 'Edit Layout' => 'Редагувати Шаблон', 8 | 'Email templates' => 'Шаблони Листів', 9 | 'Edit' => 'Редагувати', 10 | 'Edit Email Template' => 'Редагувати Шаблони Листа', 11 | 'Name' => 'Назва', 12 | 'Email template content' => 'Вміст Шаблону Листа', 13 | 'Save and Exit' => 'Зберегти і вийти', 14 | 'Save' => 'Зберегти', 15 | 'Cancel' => 'Відмінити', 16 | 'This email template does not exist' => 'Цей email шаблон відсутній', 17 | 'Your changes to the email template :name have been saved.' => 'Ваші зміни до email шаблону :name були збережені.', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/emails/views/emails/email_layout.view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/box/filesmanager/css/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/filesmanager/css/style.css: -------------------------------------------------------------------------------- 1 | .upload-area { 2 | border:2px dashed #DEDEDE; 3 | width:200px; 4 | color:#DEDEDE; 5 | text-align: center; 6 | height: 34px; 7 | display: inline-block; 8 | float:left; 9 | margin-left: 10px; 10 | } 11 | 12 | .upload-area-dragenter { 13 | border: 2px dashed #428bca !important; 14 | } 15 | 16 | .upload-area-drop { 17 | border: 2px dashed #428bca; 18 | } 19 | 20 | .upload-progress { 21 | height: 100%; 22 | width: 0; 23 | background-color: #428bca; 24 | position: relative; 25 | float: left; 26 | max-width: 100%; 27 | color: #ffffff; 28 | } 29 | 30 | .upload-file-info { 31 | display: inline-block; 32 | float: left; 33 | } 34 | 35 | .fileupload-controls { 36 | float: left; 37 | } 38 | 39 | .upload-file-pholder { 40 | padding-top: 5px; 41 | } 42 | 43 | .file-size-max-upload { 44 | color: #ccc; 45 | text-decoration: none; 46 | } 47 | 48 | .file-size-max-upload:hover { 49 | color: #ccc; 50 | cursor: default; 51 | text-decoration: none; 52 | } 53 | 54 | @media (max-width: 320px) { 55 | .create-new-dir { 56 | float:left!important; 57 | } 58 | } -------------------------------------------------------------------------------- /plugins/box/filesmanager/filesmanager.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/filesmanager/filesmanager.plugin.php 4 | active 5 | 2 6 | FilesManager 7 | Simple file manger for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/filesmanager/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/filesmanager/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Files' => 'Dateien', 6 | 'Files manager' => 'Datei-Manager', 7 | 'Name' => 'Name', 8 | 'Actions' => 'Aktionen', 9 | 'Delete' => 'Löschen', 10 | 'Upload' => 'Hochladen', 11 | 'directory' => 'Ordner', 12 | 'Delete directory: :dir' => 'Lösche Ordner: :dir', 13 | 'Delete file: :file' => 'Lösche Datei: file', 14 | 'Extension' => 'Dateiendung', 15 | 'Size' => 'Größe', 16 | 'Select file' => 'Datei wählen', 17 | 'Change' => 'Ändern', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/filesmanager/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Files' => '文件', 6 | 'Files manager' => '文件管理', 7 | 'Name' => '名称', 8 | 'Actions' => '操作', 9 | 'Delete' => '删除', 10 | 'Upload' => '上传', 11 | 'directory' => '目录', 12 | 'Delete directory: :dir' => '删除目录: :dir', 13 | 'Delete file: :file' => '删除文件 :file', 14 | 'Extension' => '扩展名', 15 | 'Size' => '尺寸', 16 | 'Select file' => '选择文件', 17 | 'Change' => '更改', 18 | ) 19 | ); 20 | -------------------------------------------------------------------------------- /plugins/box/information/information.admin.php: -------------------------------------------------------------------------------- 1 | assign('php_modules', $php_modules) 25 | ->display(); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /plugins/box/information/information.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/information/information.plugin.php 4 | active 5 | 7 6 | Information 7 | Information plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/menu/install/menu.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/menu/menu.plugin.php 4 | active 5 | 4 6 | Menu 7 | Menu managment plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/menu/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/menu/js/menu.js: -------------------------------------------------------------------------------- 1 | if (typeof $.monstra == 'undefined') $.monstra = {}; 2 | 3 | $.monstra.menu = { 4 | 5 | init: function() { }, 6 | 7 | selectPage: function (slug, title) { 8 | $('input[name=menu_item_link]').val(slug); 9 | $('input[name=menu_item_name]').val(title); 10 | $('#selectPageModal').modal('hide'); 11 | }, 12 | 13 | selectCategory: function (name) { 14 | $('input[name=menu_item_category]').val(name); 15 | $('#selectCategoryModal').modal('hide'); 16 | } 17 | 18 | }; 19 | 20 | 21 | $(document).ready(function(){ 22 | $.monstra.menu.init(); 23 | }); -------------------------------------------------------------------------------- /plugins/box/menu/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Manažer menu', 7 | 'Edit' => 'Editovat', 8 | 'Name' => 'Název', 9 | 'Delete' => 'Vymazat', 10 | 'Order' => 'Pořadí', 11 | 'Actions' => 'Akce', 12 | 'Create New Item' => 'Vytvořit novou položku', 13 | 'New item' => 'Nová položka', 14 | 'Item name' => 'Název položky', 15 | 'Item order' => 'Pořadí položky', 16 | 'Item target' => 'Cíl položky', 17 | 'Item link' => 'Odkaz položky', 18 | 'Item category' => 'Kategorie položky', 19 | 'Save' => 'Uložit', 20 | 'Edit item' => 'Editovat položku', 21 | 'Delete item :name' => 'Vymazat položku :name', 22 | 'Select page' => 'Vybrat stránku', 23 | 'Category' => 'Kategorie', 24 | 'Select category' => 'Vybrat kategorii', 25 | 'Required field' => 'Povinné políčko', 26 | 'Cancel' => 'Zrušit', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menü', 6 | 'Menu manager' => 'Menü Manager', 7 | 'Edit' => 'Bearbeiten', 8 | 'Name' => 'Name', 9 | 'Delete' => 'Löschen', 10 | 'Order' => 'Reihenfolge', 11 | 'Actions' => 'Aktionen', 12 | 'Create New Item' => 'Erstelle neuen Eintrag', 13 | 'New item' => 'Neuer Eintrag', 14 | 'Item name' => 'Eintrags Name', 15 | 'Item order' => 'Eintrags Reihenfolge', 16 | 'Item target' => 'Eintrags Ziel', 17 | 'Item link' => 'Eintrags Link', 18 | 'Item category' => 'Eintrags Kategorie', 19 | 'Save' => 'Speichern', 20 | 'Edit item' => 'Bearbeite Eintrag', 21 | 'Delete item :name' => 'Lösche Eintrag :name', 22 | 'Select page' => 'Seite auswählen', 23 | 'Category' => 'Kategorie', 24 | 'Select category' => 'Kategorie auswählen', 25 | 'Required field' => 'Pflichtfeld', 26 | 'Cancel' => 'Abbrechen', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Menu manager', 7 | 'Edit' => 'Edit', 8 | 'Name' => 'Name', 9 | 'Delete' => 'Delete', 10 | 'Order' => 'Order', 11 | 'Actions' => 'Actions', 12 | 'Create New Item' => 'Create new item', 13 | 'New item' => 'New item', 14 | 'Item name' => 'Item name', 15 | 'Item order' => 'Item order', 16 | 'Item target' => 'Item target', 17 | 'Item link' => 'Item link', 18 | 'Item category' => 'Item category', 19 | 'Save' => 'Save', 20 | 'Edit item' => 'Edit item', 21 | 'Delete item :name' => 'Delete item :name', 22 | 'Select page' => 'Select page', 23 | 'Category' => 'Category', 24 | 'Select category' => 'Select category', 25 | 'Required field' => 'Required field', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menús', 6 | 'Menu Manager' => 'Administrador de menús', 7 | 'Edit' => 'Editar', 8 | 'Name' => 'Nombre', 9 | 'Delete' => 'Eliminar', 10 | 'Order' => 'Orden', 11 | 'Actions' => 'Acciones', 12 | 'Create New Item' => 'Crear nuevo item', 13 | 'New item' => 'Nuevo item', 14 | 'Item name' => 'Nombre del item', 15 | 'Item order' => 'Orden del item', 16 | 'Item target' => 'Target del item', 17 | 'Item link' => 'Enlace del item', 18 | 'Item category' => 'Categoría del item', 19 | 'Save' => 'Guardar', 20 | 'Edit item' => 'Editar item', 21 | 'Delete item :name' => 'Eliminar item: :name', 22 | 'Select page' => 'Seleccionar página', 23 | 'Category' => 'Categoría', 24 | 'Select category' => 'Seleccionar categoría', 25 | 'Required Field' => 'Dato requerido', 26 | 'Cancel' => 'Cancelar', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'منو', 6 | 'Menu manager' => 'مدیریت منو', 7 | 'Edit' => 'ویرایش', 8 | 'Name' => 'نام', 9 | 'Delete' => 'حذف', 10 | 'Order' => 'ترتیب', 11 | 'Actions' => 'عملیات', 12 | 'Create New Item' => 'ایجاد آیتم جدید', 13 | 'New item' => 'آیتم جدید', 14 | 'Item name' => 'نام آیتم', 15 | 'Item order' => 'ترتیب آیتم', 16 | 'Item target' => 'هدف آیتم', 17 | 'Item link' => 'لینک آیتم', 18 | 'Item category' => 'مجموعه آیتم', 19 | 'Save' => 'ذخیره', 20 | 'Edit item' => 'ویرایش آیتم', 21 | 'Delete item :name' => 'حذف آیتم :name', 22 | 'Select page' => 'انتخاب صفحه', 23 | 'Category' => 'مجموعه', 24 | 'Select category' => 'انتخاب مجموعه', 25 | 'Required field' => 'کادر الزامی', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Gestionnaire du menu', 7 | 'Edit' => 'Editer', 8 | 'Name' => 'Nom', 9 | 'Delete' => 'Supprimer', 10 | 'Order' => 'Ordre', 11 | 'Actions' => 'Actions', 12 | 'Create new item' => 'Créer un nouvel item', 13 | 'New item' => 'Nouveau item', 14 | 'Item name' => 'Nom de l\'item', 15 | 'Item order' => 'Ordre de l\'item', 16 | 'Item target' => 'Cible de l\'item', 17 | 'Item link' => 'Lien de l\'item', 18 | 'Item category' => 'Catégorie de l\'item', 19 | 'Save' => 'Enregistrer', 20 | 'Edit item' => 'Editer l\'item', 21 | 'Delete item :name' => 'Supprimer l\'item :name', 22 | 'Select page' => 'Sélectionner la page', 23 | 'Category' => 'Catégorie', 24 | 'Select category' => 'Sélectionner une catégorie', 25 | 'Required field' => 'Champ requis', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); -------------------------------------------------------------------------------- /plugins/box/menu/languages/hu.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menü', 6 | 'Menu manager' => 'Menükezelő', 7 | 'Edit' => 'Szerkeszt', 8 | 'Name' => 'Név', 9 | 'Delete' => 'Töröl', 10 | 'Order' => 'Rendezés', 11 | 'Actions' => 'Műveletek', 12 | 'Create New Item' => 'Új menü készítése', 13 | 'New item' => 'Új menü', 14 | 'Item name' => 'Menü neve', 15 | 'Item order' => 'Menü rendezés', 16 | 'Item target' => 'Menü célpont', 17 | 'Item link' => 'Menü link', 18 | 'Item category' => 'Menü kategória', 19 | 'Save' => 'Mentés', 20 | 'Edit item' => 'Menü szerkesztése', 21 | 'Delete item :name' => 'Menü törlése :name', 22 | 'Select page' => 'Válassza ki az oldalt', 23 | 'Category' => 'Kategória', 24 | 'Select category' => 'Válassza ki a kategóriát', 25 | 'Required field' => 'Kötelező mező', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/id.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Pengelolaan Menu', 7 | 'Edit' => 'Perbaiki', 8 | 'Name' => 'Nama', 9 | 'Delete' => 'Hapus', 10 | 'Order' => 'Urutan', 11 | 'Actions' => 'Tindakan', 12 | 'Create New Item' => 'Buat Perihal Baru', 13 | 'New item' => 'Perihal Baru', 14 | 'Item name' => 'Nama Perihal', 15 | 'Item order' => 'Urutan Perihal', 16 | 'Item target' => 'Target Perihal', 17 | 'Item link' => 'Link Perihal', 18 | 'Item category' => 'Kategori Perihal', 19 | 'Save' => 'Simpan', 20 | 'Edit item' => 'Perbaiki Perihal', 21 | 'Delete item :name' => 'Hapus perihal :nama', 22 | 'Select page' => 'Pilih Halaman', 23 | 'Category' => 'Kategori', 24 | 'Select category' => 'Pilih Kategori', 25 | 'Required field' => 'Isian yang Dibutuhkan', 26 | ) 27 | ); 28 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Gestione menu', 7 | 'Edit' => 'Modifica', 8 | 'Name' => 'Nome', 9 | 'Delete' => 'Elimina', 10 | 'Order' => 'Ordine', 11 | 'Actions' => 'Azioni', 12 | 'Create New Item' => 'Crea nuova voce', 13 | 'New item' => 'Nuova voce', 14 | 'Item name' => 'Nome', 15 | 'Item order' => 'Ordine', 16 | 'Item target' => 'Target', 17 | 'Item link' => 'Collegamento', 18 | 'Item category' => 'Categoria', 19 | 'Save' => 'Salva', 20 | 'Edit item' => 'Modifica voce menu', 21 | 'Delete item :name' => 'Elimina voce menu :name', 22 | 'Select page' => 'Scegli pagina', 23 | 'Category' => 'Categoria', 24 | 'Select category' => 'Scegli categoria', 25 | 'Required field' => 'Campo obbligatorio', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/ja.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'メニュー', 6 | 'Menu manager' => 'メニューの管理', 7 | 'Edit' => '編集', 8 | 'Name' => '名前', 9 | 'Delete' => '削除', 10 | 'Order' => '順序', 11 | 'Actions' => '操作', 12 | 'Create New Item' => '新規アイテムを作成', 13 | 'New item' => '新規アイテム', 14 | 'Item name' => 'アイテムの名前', 15 | 'Item order' => 'アイテムの順序', 16 | 'Item target' => 'アイテムのターゲット', 17 | 'Item link' => 'アイテムのリンク先', 18 | 'Item category' => 'アイテムのカテゴリ', 19 | 'Save' => '保存', 20 | 'Edit item' => 'アイテムの編集', 21 | 'Delete item :name' => 'アイテムの削除 :name', 22 | 'Select page' => 'ページの選択', 23 | 'Category' => 'カテゴリ', 24 | 'Select category' => 'カテゴリの選択', 25 | 'Required field' => '必須項目', 26 | ) 27 | ); 28 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'მენიუ', 6 | 'Menu manager' => 'მენიუს მენეჯერი', 7 | 'Edit' => 'რედაქტირება', 8 | 'Name' => 'სახელწოდება', 9 | 'Delete' => 'წაშლა', 10 | 'Order' => 'რიგი', 11 | 'Actions' => 'მოქმედება', 12 | 'Create New Item' => 'მენიუს ახალი პუნქტის შექმნა', 13 | 'New item' => 'მენიუს ახალი პუნქტი', 14 | 'Item name' => 'სახელი', 15 | 'Item order' => 'რიგი', 16 | 'Item target' => 'მიზანი', 17 | 'Item link' => 'ბმული', 18 | 'Item category' => 'კატეგორია', 19 | 'Save' => 'შენახვა', 20 | 'Edit item' => 'მენიუს პუნქტის რედაქტირება', 21 | 'Delete item :name' => 'მენიუს პუქტის წაშლა :name', 22 | 'Select page' => 'გვერდის არჩევა', 23 | 'Category' => 'კატეგორია', 24 | 'Select category' => 'კატეგორიის არჩევა', 25 | 'Required field' => 'აუცილებელი ველი', 26 | 'Cancel' => 'გაუქმება', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Meniu', 6 | 'Menu manager' => 'Meniu tvarkyklė', 7 | 'Edit' => 'Redaguoti', 8 | 'Name' => 'Pavadinimas', 9 | 'Delete' => 'Trinti', 10 | 'Order' => 'Eiliškumas', 11 | 'Actions' => 'Veiksmai', 12 | 'Create New Item' => 'Sukurti naują nuorodą', 13 | 'New item' => 'Nauja nuoroda', 14 | 'Item name' => 'Pavadinimas', 15 | 'Item order' => 'Eiliškumas', 16 | 'Item target' => 'Nuorodos atidarymo būdas', 17 | 'Item link' => 'Nuoroda', 18 | 'Item category' => 'Kategorija', 19 | 'Save' => 'Išsaugoti', 20 | 'Edit item' => 'Redaguoti nuorodą', 21 | 'Delete item :name' => 'Ištrinti nuorodą :name', 22 | 'Add page' => 'Pridėti puslapį', 23 | 'Select page' => 'Pasirinkti puslapį', 24 | 'Category' => 'Kategorija', 25 | 'Select category' => 'Pasirinkti kategoriją', 26 | 'Required field' => 'Privalomas laukas', 27 | 'Cancel' => 'Cancel', 28 | ) 29 | ); 30 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Menu beheer', 7 | 'Edit' => 'Bewerken', 8 | 'Name' => 'Naam', 9 | 'Delete' => 'Verwijderen', 10 | 'Order' => 'Volgorde', 11 | 'Actions' => 'Acties', 12 | 'Create New Item' => 'Nieuw menu', 13 | 'New item' => 'Nieuw menu', 14 | 'Item name' => 'Menu naam', 15 | 'Item order' => 'Menu volgorde', 16 | 'Item target' => 'Menu doel', 17 | 'Item link' => 'Menu link', 18 | 'Item category' => 'Menu categorie', 19 | 'Save' => 'Opslaan', 20 | 'Edit item' => 'Bewerk menu', 21 | 'Delete item :name' => 'Verwijder menu: :name', 22 | 'Select page' => 'Selecteer pagina', 23 | 'Category' => 'Categorie', 24 | 'Select category' => 'Selecteer categorie', 25 | 'Required field' => 'Vereist veld', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Zarządzaj menu', 7 | 'Edit' => 'Edytuj', 8 | 'Name' => 'Nazwa', 9 | 'Delete' => 'Usuń', 10 | 'Order' => 'Kolejność', 11 | 'Actions' => 'Akcje', 12 | 'Create New Item' => 'Utwórz nową pozycję', 13 | 'New item' => 'Nowa pozycja', 14 | 'Item name' => 'Nazwa pozycji', 15 | 'Item order' => 'Kolejność pozycji', 16 | 'Item target' => 'Cel pozycji', 17 | 'Item link' => 'Łącze pozycji', 18 | 'Item category' => 'Kategoria pozycji', 19 | 'Save' => 'Zapisz', 20 | 'Edit item' => 'Edytuj pozycję', 21 | 'Delete item :name' => 'Czy napewno usunąć pozycję :name', 22 | 'Select page' => 'Wybierz stronę', 23 | 'Category' => 'Kategoria', 24 | 'Select category' => 'Wybierz kategorię', 25 | 'Required field' => 'Pole wymagane', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Gerenciador do menu', 7 | 'Edit' => 'Editar', 8 | 'Name' => 'Nome', 9 | 'Delete' => 'Deletar', 10 | 'Order' => 'Ordem', 11 | 'Actions' => 'Ações', 12 | 'Create New Item' => 'Criar novo item', 13 | 'New item' => 'Novo item', 14 | 'Item name' => 'Nome do item', 15 | 'Item order' => 'ordem do item', 16 | 'Item target' => 'Target do item (atributo HTML)', 17 | 'Item link' => 'Link do item', 18 | 'Item category' => 'Categoria do item', 19 | 'Save' => 'Salvar', 20 | 'Edit item' => 'Editar item', 21 | 'Delete item :name' => 'Deletar o item :name', 22 | 'Select page' => 'Selecionar página', 23 | 'Category' => 'Categoria', 24 | 'Select category' => 'Selecionar categoria', 25 | 'Required field' => 'Campo requerido', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Меню', 6 | 'Menu manager' => 'Менеджер меню', 7 | 'Edit' => 'Редактировать', 8 | 'Name' => 'Название', 9 | 'Delete' => 'Удалить', 10 | 'Order' => 'Порядок', 11 | 'Actions' => 'Действия', 12 | 'Create New Item' => 'Создать новый пункт меню', 13 | 'New item' => 'Новый пункт меню', 14 | 'Item name' => 'Название', 15 | 'Item order' => 'Порядок', 16 | 'Item target' => 'Цель', 17 | 'Item link' => 'Ссылка', 18 | 'Item category' => 'Категория', 19 | 'Save' => 'Сохранить', 20 | 'Edit item' => 'Редактирование пункта меню', 21 | 'Delete item :name' => 'Удалить пункт меню :name', 22 | 'Select page' => 'Выбрать страницу', 23 | 'Category' => 'Категория', 24 | 'Select category' => 'Выбрать категорию', 25 | 'Required field' => 'Обязательное поле', 26 | 'Cancel' => 'Отмена', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Manažér menu', 7 | 'Edit' => 'Editovať', 8 | 'Name' => 'Názov', 9 | 'Delete' => 'Vymazať', 10 | 'Order' => 'Poradie', 11 | 'Actions' => 'Akcie', 12 | 'Create New Item' => 'Vytvoriť novú položku', 13 | 'New item' => 'Nová položka', 14 | 'Item name' => 'Názov položky', 15 | 'Item order' => 'Poradie položky', 16 | 'Item target' => 'Cieľ položky', 17 | 'Item link' => 'Odkaz položky', 18 | 'Item category' => 'Kategória položky', 19 | 'Save' => 'Uložiť', 20 | 'Edit item' => 'Editovať položku', 21 | 'Delete item :name' => 'Vymazať položku :name', 22 | 'Select page' => 'Vybrať stránku', 23 | 'Category' => 'Kategória', 24 | 'Select category' => 'Vybrať kategóriu', 25 | 'Required field' => 'Povinné políčko', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menu', 6 | 'Menu manager' => 'Menu menadžer', 7 | 'Edit' => 'Izmeni', 8 | 'Name' => 'Ime', 9 | 'Delete' => 'Obriši', 10 | 'Order' => 'Poređenje', 11 | 'Actions' => 'Akcije', 12 | 'Create new item' => 'Kreiraj novu stavku', 13 | 'New item' => 'Nova stavka', 14 | 'Item name' => 'Ime', 15 | 'Item order' => 'Poredjenje', 16 | 'Item target' => 'Otvaranje stranice', 17 | 'Item link' => 'Link', 18 | 'Item category' => 'Kategorija', 19 | 'Save' => 'Sačuvaj', 20 | 'Edit item' => 'Izmeni', 21 | 'Delete item :name' => 'Obriši stavku :name', 22 | 'Select page' => 'Odaberi stranicu', 23 | 'Category' => 'Kategorija', 24 | 'Select category' => 'Odaberi kategoriju', 25 | 'Required field' => 'Polje je potrebno', 26 | 'Cancel' => 'Otkaži', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Menü', 6 | 'Menu manager' => 'Menü Yöneticisi', 7 | 'Edit' => 'Düzenle', 8 | 'Name' => 'Ad', 9 | 'Delete' => 'Sil', 10 | 'Order' => 'Sıra', 11 | 'Actions' => 'İşlemler', 12 | 'Create New Item' => 'Yeni Bağlantı Oluştur', 13 | 'New item' => 'Yeni bağlantı', 14 | 'Item name' => 'Bağlantı adı', 15 | 'Item order' => 'Bağlantı sırası', 16 | 'Item target' => 'Bağlantı hedefi', 17 | 'Item link' => 'Bağlantı yolu', 18 | 'Item category' => 'Bağlantı kategorisi', 19 | 'Save' => 'Kaydet', 20 | 'Edit item' => 'Bağlantıyı düzenle', 21 | 'Delete item :name' => ':name adlı bağlantıyı sil', 22 | 'Select page' => 'Sayfa seç', 23 | 'Category' => 'Kategori', 24 | 'Select category' => 'Kategori seç', 25 | 'Required field' => 'Zorunlu alan', 26 | 'Cancel' => 'Vazgeç', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => 'Меню', 6 | 'Menu manager' => 'Менеджер меню', 7 | 'Edit' => 'Редагувати', 8 | 'Name' => 'Назва', 9 | 'Delete' => 'Видалити', 10 | 'Order' => 'Порядок', 11 | 'Actions' => 'Дії', 12 | 'Create New Item' => 'Створити новий пункт меню', 13 | 'New item' => 'Новий пункт меню', 14 | 'Item name' => 'Назва', 15 | 'Item order' => 'Порядок', 16 | 'Item target' => 'Ціль', 17 | 'Item link' => 'Лінк', 18 | 'Item category' => 'Категорія', 19 | 'Save' => 'Зберегти', 20 | 'Edit item' => 'Редагувати пункт меню', 21 | 'Delete item :name' => 'Видалити пункт меню :name', 22 | 'Select page' => 'Вибрати сторінку', 23 | 'Category' => 'Категорія', 24 | 'Select category' => 'Вибрати категорію', 25 | 'Required field' => 'Обов’язкове поле', 26 | 'Cancel' => 'Cancel', 27 | ) 28 | ); 29 | -------------------------------------------------------------------------------- /plugins/box/menu/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Menu' => '菜单', 6 | 'Menu manager' => '菜单管理', 7 | 'Edit' => '编辑', 8 | 'Name' => '名称', 9 | 'Delete' => '删除', 10 | 'Order' => '顺序', 11 | 'Actions' => '操作', 12 | 'Create New Item' => '创建新项目', 13 | 'New item' => '新项目', 14 | 'Item name' => '项目名称', 15 | 'Item order' => '项目顺序', 16 | 'Item target' => '项目目标', 17 | 'Item link' => '项目链接', 18 | 'Item category' => '项目类别', 19 | 'Save' => '保存', 20 | 'Edit item' => '布局项目', 21 | 'Delete item :name' => '删除项目 :name', 22 | 'Select page' => '选择页面', 23 | 'Category' => '类别', 24 | 'Select category' => '选择类别', 25 | 'Required field' => '必填字段', 26 | ) 27 | ); 28 | -------------------------------------------------------------------------------- /plugins/box/pages/install/pages.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/pages/pages.plugin.php 4 | active 5 | 1 6 | Pages 7 | Pages managment plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/pages/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/pages/views/frontend/available_pages.view.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /plugins/box/pages/views/frontend/breadcrumbs.view.php: -------------------------------------------------------------------------------- 1 | 2 |    3 | 4 | 5 | 2 | 3 | plugins/box/plugins/plugins.plugin.php 4 | active 5 | 2 6 | Plugins 7 | Plugins manager plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/plugins/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/plugins/js/plugins.js: -------------------------------------------------------------------------------- 1 | if (typeof $.monstra == 'undefined') $.monstra = {}; 2 | 3 | $.monstra.plugins = { 4 | 5 | init: function(){ 6 | if (window.location.hash && $('a[href="'+ window.location.hash +'"]')) { 7 | $('a[href="'+ window.location.hash +'"]').click(); 8 | } 9 | } 10 | 11 | }; 12 | 13 | $(document).ready(function(){ 14 | $.monstra.plugins.init(); 15 | }); -------------------------------------------------------------------------------- /plugins/box/plugins/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Pluginy', 6 | 'Name' => 'Název', 7 | 'Actions' => 'Akce', 8 | 'Description' => 'Popis', 9 | 'Installed' => 'Nainstalované', 10 | 'Install New' => 'Instalovat nový', 11 | 'Delete' => 'Vymazat', 12 | 'Delete plugin :plugin' => 'Vymazat plugin :plugin', 13 | 'This plugin does not exist' => 'Tento plugin neexistuje', 14 | 'Version' => 'Verze', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Získat víc pluginů', 17 | 'Install' => 'Instalovat', 18 | 'Uninstall' => 'Odinstalovat', 19 | 'README.md not found' => 'README.md nenalezeno', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Name', 7 | 'Actions' => 'Aktionen', 8 | 'Description' => 'Beschreibung', 9 | 'Installed' => 'Installiert', 10 | 'Install New' => 'Installiere Neue', 11 | 'Delete' => 'Löschen', 12 | 'Delete plugin :plugin' => 'Lösche Plugin :plugin', 13 | 'This plugins does not exist' => 'Diese Plugins existieren nicht', 14 | 'Version' => 'Version', 15 | 'Author' => 'Author', 16 | 'Get More Plugins' => 'Hole weitere Plugins', 17 | 'Install' => 'Installieren', 18 | 'Uninstall' => 'Deinstallieren', 19 | 'README.md not found' => 'README.md nicht gefunden', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Name', 7 | 'Actions' => 'Actions', 8 | 'Description' => 'Description', 9 | 'Installed' => 'Installed', 10 | 'Install New' => 'Install New', 11 | 'Delete' => 'Delete', 12 | 'Delete plugin :plugin' => 'Delete plugin :plugin', 13 | 'This plugin does not exist' => 'This plugin does not exist', 14 | 'Version' => 'Version', 15 | 'Author' => 'Author', 16 | 'Get More Plugins' => 'Get More Plugins', 17 | 'Install' => 'Install', 18 | 'Uninstall' => 'Uninstall', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Nombre', 7 | 'Actions' => 'Acciones', 8 | 'Description' => 'Descripción', 9 | 'Installed' => 'Instalado', 10 | 'Install New' => 'Instalar nuevo', 11 | 'Delete' => 'Eliminar', 12 | 'Delete plugin :plugin' => 'Eliminar plugin: :plugin', 13 | 'This plugin does not exist' => 'Este plugin no existe', 14 | 'Version' => 'Versión', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Obtener más plugins', 17 | 'Install' => 'Instalar', 18 | 'Uninstall' => 'Desinstalar', 19 | 'README.md not found' => 'README.md no encontrado', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'افزونه ها', 6 | 'Name' => 'نام', 7 | 'Actions' => 'عملیات', 8 | 'Description' => 'توضیحات', 9 | 'Installed' => 'نصب شده', 10 | 'Install New' => 'نصب جدید', 11 | 'Delete' => 'حذف', 12 | 'Delete plugin :plugin' => 'حذف افزونه :plugin', 13 | 'This plugin does not exist' => 'این افزونه وجود ندارد', 14 | 'Version' => 'نسخه', 15 | 'Author' => 'مولف', 16 | 'Get More Plugins' => 'دریافت افزونه های بیشتر', 17 | 'Install' => 'نصب', 18 | 'Uninstall' => 'حذف', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Nom', 7 | 'Actions' => 'Actions', 8 | 'Description' => 'Description', 9 | 'Installed' => 'Installé', 10 | 'Install New' => 'Installer un nouveau', 11 | 'Delete' => 'Supprimer', 12 | 'Delete plugin :plugin' => 'Supprimer le plugin :plugin', 13 | 'This plugin does not exist' => 'Ce plugin n\\\'existe pas', 14 | 'Version' => 'Version', 15 | 'Author' => 'Auteur', 16 | 'Get More Plugins' => 'Obtenez plus de plugins', 17 | 'Install' => 'Installer', 18 | 'Uninstall' => 'Désinstaller', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); -------------------------------------------------------------------------------- /plugins/box/plugins/languages/hu.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Pluginok', 6 | 'Name' => 'Név', 7 | 'Actions' => 'Műveletek', 8 | 'Description' => 'Leírás', 9 | 'Installed' => 'Telepítve', 10 | 'Install New' => 'Új Telepítése', 11 | 'Delete' => 'Törlés', 12 | 'Delete plugin :plugin' => 'Plugin törlése :plugin', 13 | 'This plugin does not exist' => 'Ez a plugin nem létezik', 14 | 'Version' => 'Verzió', 15 | 'Author' => 'Szerző', 16 | 'Get More Plugins' => 'Még több Plugin', 17 | 'Install' => 'Telepít', 18 | 'Uninstall' => 'Töröl', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/id.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Nama', 7 | 'Actions' => 'Tindakan', 8 | 'Description' => 'Deskripsi', 9 | 'Installed' => 'Terpasang', 10 | 'Install New' => 'Pemasangan Baru', 11 | 'Delete' => 'Hapus', 12 | 'Delete plugin :plugin' => 'Hapus Plugin :plugin', 13 | 'This plugins does not exist' => 'Plugin ini tidak ada', 14 | 'Version' => 'Versi', 15 | 'Author' => 'Penulis', 16 | 'Get More Plugins' => 'Cari Plugins Baru', 17 | 'Install' => 'Memasangkan', 18 | 'Uninstall' => 'Menghapus Program', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugin', 6 | 'Installed' => 'Installati', 7 | 'Install New' => 'Installa nuovi', 8 | 'Actions' => 'Azioni', 9 | 'Name' => 'Nome', 10 | 'Description' => 'Descrizione', 11 | 'Delete' => 'Elimina', 12 | 'Delete plugin :plugin' => 'Elimina plugin :plugin', 13 | 'This plugin does not exist' => 'Tale plugin non esiste', 14 | 'Version' => 'Versione', 15 | 'Author' => 'Autore', 16 | 'Get More Plugins' => 'Scarica altri plugin', 17 | 'Install' => 'Installa', 18 | 'Uninstall' => 'Disinstalla', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/ja.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'プラグイン', 6 | 'Name' => '名前', 7 | 'Actions' => '操作', 8 | 'Description' => '説明', 9 | 'Installed' => 'インストール済み', 10 | 'Install New' => 'インストール可能', 11 | 'Delete' => '削除', 12 | 'Delete plugin :plugin' => 'プラグインの削除: :plugin', 13 | 'This plugin does not exist' => 'プラグインが存在しません。', 14 | 'Version' => 'バージョン', 15 | 'Author' => '作成者', 16 | 'Get More Plugins' => 'さらにプラグインを取得', 17 | 'Install' => 'インストール', 18 | 'Uninstall' => '停止', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'პლაგინები', 6 | 'Installed' => 'დაყენებული', 7 | 'Install New' => 'ახალის დაყენება', 8 | 'Actions' => 'მოქმედება', 9 | 'Name' => 'სახელწოდება', 10 | 'Description' => 'აღწერა', 11 | 'Delete' => 'წაშლა', 12 | 'Delete plugin :plugin' => ':plugin პლაგინის წაშლა', 13 | 'This plugin does not exist' => 'ასეთი პლაგინი არ არსებობს', 14 | 'Version' => 'ვერსია', 15 | 'Author' => 'ავტორი', 16 | 'Get More Plugins' => 'სხვა პლაგინების გადმოწერა', 17 | 'Install' => 'დაყენება', 18 | 'Uninstall' => 'წაშლა', 19 | 'README.md not found' => 'README.md არ არის ნაპოვნი', 20 | 'Info' => 'ინფო', 21 | 'Upload' => 'ატვირთვა', 22 | 'Drop File Here' => 'გადაიტანეთ ფაილი აქ', 23 | ) 24 | ); 25 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Papildiniai', 6 | 'Name' => 'Pavadinimas', 7 | 'Actions' => 'Veiksmai', 8 | 'Description' => 'Aprašymas', 9 | 'Installed' => 'Įdiegti', 10 | 'Install New' => 'Įdiegti naują', 11 | 'Delete' => 'Ištrinti', 12 | 'Delete plugin :plugin' => 'Ištrinti papildinį :plugin', 13 | 'This plugins does not exist' => 'Tokio papildinio nėra', 14 | 'Version' => 'Versija', 15 | 'Author' => 'Autorius', 16 | 'Get More Plugins' => 'Gauti daugiau papildinių', 17 | 'Install' => 'Įdiegti', 18 | 'Uninstall' => 'Išdiegti', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Naam', 7 | 'Actions' => 'Acties', 8 | 'Description' => 'Beschrijving', 9 | 'Installed' => 'Geinstalleerd', 10 | 'Install New' => 'Installeer nieuwe plugin', 11 | 'Delete' => 'Verwijderen', 12 | 'Delete plugin :plugin' => 'Verwijder plugin: :plugin', 13 | 'This plugins does not exist' => 'Deze plugin bestaat niet', 14 | 'Version' => 'Versie', 15 | 'Author' => 'Auteur', 16 | 'Get More Plugins' => 'Vind meer plugins', 17 | 'Install' => 'Installeren', 18 | 'Uninstall' => 'Deinstalleren', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Wtyczki', 6 | 'Name' => 'Nazwa', 7 | 'Actions' => 'Akcje', 8 | 'Description' => 'Opis', 9 | 'Installed' => 'Zainstalowane', 10 | 'Install New' => 'Zainstaluj nową', 11 | 'Delete' => 'Usuń', 12 | 'Delete plugin :plugin' => 'Czy napewno usunąć wtyczkę :plugin', 13 | 'This plugin does not exist' => 'Ta wtyczka nie istnieje', 14 | 'Version' => 'Wersja', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Pobierz więcej wtyczek', 17 | 'Install' => 'Instaluj', 18 | 'Uninstall' => 'Odinstaluj', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Plugins', 6 | 'Name' => 'Nome', 7 | 'Actions' => 'Ações', 8 | 'Description' => 'Descrição', 9 | 'Installed' => 'Instalado', 10 | 'Install New' => 'Instalar novo', 11 | 'Delete' => 'Deletar', 12 | 'Delete plugin :plugin' => 'Deletar o plugin :plugin', 13 | 'This plugins does not exist' => 'Estes plugins não existem', 14 | 'Version' => 'Versão', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Ver mais plugins', 17 | 'Install' => 'Instalar', 18 | 'Uninstall' => 'Desinstalar', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Плагины', 6 | 'Installed' => 'Установленные', 7 | 'Install New' => 'Установить новые', 8 | 'Actions' => 'Действия', 9 | 'Name' => 'Название', 10 | 'Description' => 'Описание', 11 | 'Delete' => 'Удалить', 12 | 'Delete plugin :plugin' => 'Удалить плагин :plugin', 13 | 'This plugin does not exist' => 'Такого плагина не существует', 14 | 'Version' => 'Версия', 15 | 'Author' => 'Автор', 16 | 'Get More Plugins' => 'Скачать другие плагины', 17 | 'Install' => 'Установить', 18 | 'Uninstall' => 'Удалить', 19 | 'README.md not found' => 'README.md не найден', 20 | 'Info' => 'Инфо', 21 | 'Upload' => 'Загрузить', 22 | 'Drop File Here' => 'Перетащите файл сюда', 23 | ) 24 | ); 25 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Pluginy', 6 | 'Name' => 'Názov', 7 | 'Actions' => 'Akcie', 8 | 'Description' => 'Popis', 9 | 'Installed' => 'Nainštalované', 10 | 'Install New' => 'Inštalovať nový', 11 | 'Delete' => 'Vymazať', 12 | 'Delete plugin :plugin' => 'Vymazať plugin :plugin', 13 | 'This plugin does not exist' => 'Tento plugin neexistuje', 14 | 'Version' => 'Verzia', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Získať viacej pluginov', 17 | 'Install' => 'Inštalovať', 18 | 'Uninstall' => 'Odinštalovať', 19 | 'README.md not found' => 'README.md not found', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Dodaci', 6 | 'Name' => 'Ime', 7 | 'Actions' => 'Akcije', 8 | 'Description' => 'Opis', 9 | 'Installed' => 'Instalirani', 10 | 'Install New' => 'Instaliraj novi', 11 | 'Delete' => 'Obriši', 12 | 'Delete plugin :plugin' => 'Obriši dodatak :plugin', 13 | 'This plugin does not exist' => 'Ovaj dodatak ne postoji', 14 | 'Version' => 'Verzija', 15 | 'Author' => 'Autor', 16 | 'Get More Plugins' => 'Dodaj još dodataka', 17 | 'Install' => 'Instaliraj', 18 | 'Uninstall' => 'Deinstaliraj', 19 | 'README.md not found' => 'README.md Nije nađeno', 20 | ) 21 | ); 22 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Eklentiler', 6 | 'Name' => 'Ad', 7 | 'Actions' => 'İşlemler', 8 | 'Description' => 'Açıklama', 9 | 'Installed' => 'Yüklenenler', 10 | 'Install New' => 'Yeni Yükle', 11 | 'Delete' => 'Sil', 12 | 'Delete plugin :plugin' => ':plugin adlı eklenti silinsin mi', 13 | 'This plugin does not exist' => 'Eklenti bulunamadı', 14 | 'Version' => 'Sürüm', 15 | 'Author' => 'Yazar', 16 | 'Get More Plugins' => 'Daha Fazla Eklenti', 17 | 'Install' => 'Yükle', 18 | 'Uninstall' => 'Kaldır', 19 | ) 20 | ); 21 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => 'Плагіни', 6 | 'Installed' => 'Встановлені', 7 | 'Install New' => 'Встановити нові', 8 | 'Actions' => 'Дії', 9 | 'Name' => 'Назва', 10 | 'Description' => 'Опис', 11 | 'Delete' => 'Видалити', 12 | 'Delete plugin :plugin' => 'Видалити плагін :plugin', 13 | 'This plugin does not exist' => 'Такий плагін не існує', 14 | 'Version' => 'Версія', 15 | 'Author' => 'Автор', 16 | 'Get More Plugins' => 'Завантажити інші плагіни', 17 | 'Install' => 'Встановити', 18 | 'Uninstall' => 'Видалити', 19 | 'README.md not found' => 'README.md не знайдено', 20 | 'Info' => 'Інфо', 21 | 'Upload' => 'Завантажити', 22 | 'Drop File Here' => 'Перенесіть файл сюди', 23 | ) 24 | ); 25 | -------------------------------------------------------------------------------- /plugins/box/plugins/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Plugins' => '插件', 6 | 'Name' => '名称', 7 | 'Actions' => '操作', 8 | 'Description' => '描述', 9 | 'Installed' => '已安装', 10 | 'Install New' => '安装新插件', 11 | 'Delete' => '删除', 12 | 'Delete plugin :plugin' => '删除插件 :plugin', 13 | 'This plugin does not exist' => '此插件不存在', 14 | 'Version' => '版本', 15 | 'Author' => '作者', 16 | 'Get More Plugins' => '获取更多插件', 17 | 'Install' => '安装', 18 | 'Uninstall' => '卸载', 19 | ) 20 | ); 21 | -------------------------------------------------------------------------------- /plugins/box/plugins/plugins.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/sitemap/sitemap.plugin.php 4 | active 5 | 10 6 | Sitemap 7 | Show sitemap 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/cs.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa webu', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Sitemap', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Sitemap', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa del sitio', 6 | ) 7 | ); -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'نقشه سایت', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Plan du site', 6 | ) 7 | ); -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/hu.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Oldaltérkép', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Sitemap', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/ja.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'サイトマップ', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'საიტის რუქა', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Sitemap', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Sitemap', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa witryny', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa do site', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Карта сайта', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa webstánky', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Mapa sajta', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Site Haritası', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => 'Мапа сайту', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/sitemap/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sitemap' => '网站地图', 6 | ) 7 | ); 8 | -------------------------------------------------------------------------------- /plugins/box/snippets/install/snippets.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/snippets/snippets.plugin.php 4 | active 5 | 6 6 | Snippets 7 | Snippets manager plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/snippets/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/snippets/js/snippets.js: -------------------------------------------------------------------------------- 1 | if (typeof $.monstra == 'undefined') $.monstra = {}; 2 | 3 | $.monstra.snippets = { 4 | 5 | init: function() { }, 6 | 7 | showEmbedCodes: function(name) { 8 | $('#shortcode').html('{snippet get="'+name+'"}'); 9 | $('#phpcode').html('<?php echo Snippet::get("'+name+'"); ?>'); 10 | $('#embedCodes').modal(); 11 | } 12 | 13 | }; 14 | 15 | 16 | $(document).ready(function(){ 17 | $.monstra.snippets.init(); 18 | }); -------------------------------------------------------------------------------- /plugins/box/system/install/system.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/system/system.plugin.php 4 | active 5 | 4 6 | System 7 | Monstra System plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/themes/install/themes.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/themes/themes.plugin.php 4 | active 5 | 3 6 | Themes 7 | Themes managment plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/users/install/users.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/box/users/users.plugin.php 4 | active 5 | 7 6 | Users 7 | Users plugin 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/box/users/js/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/box/users/js/users.js: -------------------------------------------------------------------------------- 1 | if (typeof $.monstra == 'undefined') $.monstra = {}; 2 | 3 | $.monstra.users = { 4 | 5 | init: function() { 6 | this.usersFrontendRegistration(); 7 | }, 8 | 9 | usersFrontendRegistration: function() { 10 | $('#users_frontend_registration').on('ifChanged', function(event){ 11 | $("form[name=users_frontend]").submit(); 12 | }); 13 | } 14 | 15 | }; 16 | 17 | 18 | $(document).ready(function(){ 19 | $.monstra.users.init(); 20 | }); -------------------------------------------------------------------------------- /plugins/box/users/views/frontend/index.view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | 12 |
8 | 9 |
-------------------------------------------------------------------------------- /plugins/box/users/views/frontend/userspanel.view.php: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 |
  • 14 |
  • 15 | -------------------------------------------------------------------------------- /plugins/captcha/captcha.plugin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/captcha/captcha.plugin.php 4 | active 5 | 15 6 | Captcha 7 | Captcha plugin for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/captcha/install/captcha.uninstall.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha plugin pro Monstra', 7 | 'Captcha code is wrong' => 'Captcha kód je nesprávný', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha Plugin für Monstra', 7 | 'Captcha code is wrong' => 'Captcha Code ist falsch', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha plugin for Monstra', 7 | 'Captcha code is wrong' => 'Captcha code is wrong', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha plugin for Monstra', 7 | 'Captcha code is wrong' => 'El código captcha es incorrecto', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'کدامنيتي', 6 | 'Captcha plugin for Monstra' => 'کدامنيتي براي مونسترا', 7 | 'Captcha code is wrong' => 'کدامنيتي اشتباه است', 8 | ) 9 | ); -------------------------------------------------------------------------------- /plugins/captcha/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Plugin Captcha pour Monstra', 7 | 'Captcha code is wrong' => 'Le code Captcha est erroné', 8 | ) 9 | ); -------------------------------------------------------------------------------- /plugins/captcha/languages/id.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Verifikasi', 6 | 'Captcha plugin for Monstra' => 'Verifikasi plugin untuk Monstra', 7 | 'Captcha code is wrong' => 'Kode Verifikasi salah', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha plugin per Monstra', 7 | 'Captcha code is wrong' => 'Codice captcha è errato', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha პლაგინი Monstra-თვის', 7 | 'Captcha code is wrong' => 'Captcha-ზე პასუხი არასწორია!', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Saugos kodas', 6 | 'Captcha plugin for Monstra' => 'Saugos kodo papildinys', 7 | 'Captcha code is wrong' => 'Saugos kodas yra neteisingas', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha Plugin voor Monstra', 7 | 'Captcha code is wrong' => 'Captcha Code is helaas foutief', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Wtyczka Captcha dla systemu Monstra', 7 | 'Captcha code is wrong' => 'Niewłaściwy kod Captcha', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Plugin de captcha para o Monstra CMS', 7 | 'Captcha code is wrong' => 'O Captcha está errado', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha плагин для Monstra', 7 | 'Captcha code is wrong' => 'Captcha код неправильный', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha plugin pre Monstra', 7 | 'Captcha code is wrong' => 'Captcha kód je nesprávny', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha', 6 | 'Captcha plugin for Monstra' => 'Captcha dodatak za Monstra', 7 | 'Captcha code is wrong' => 'Captcha Kod je pogrešan', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Captcha/Doğrulama', 6 | 'Captcha plugin for Monstra' => 'Monstra için captcha/doğrulama eklentisi', 7 | 'Captcha code is wrong' => 'Doğrulama kodu yanlış', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => 'Каптча', 6 | 'Captcha plugin for Monstra' => 'Каптча плагін для Monstra', 7 | 'Captcha code is wrong' => 'Код каптчі невірний', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/captcha/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Captcha' => '验证码', 6 | 'Captcha plugin for Monstra' => 'Monstra 验证码插件', 7 | 'Captcha code is wrong' => '验证码错误', 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /plugins/codemirror/README.md: -------------------------------------------------------------------------------- 1 | CodeMirror 2 | ====================== 3 | 4 | CodeMirror is a versatile text editor implemented in JavaScript for the browser. -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text 2 | *.js text 3 | *.html text 4 | *.md text 5 | *.json text 6 | *.yml text 7 | *.css text 8 | *.svg text 9 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | test.html 4 | .tern-* 5 | *~ 6 | *.swp 7 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2013 by Marijn Haverbeke and others 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/README.md: -------------------------------------------------------------------------------- 1 | # CodeMirror 2 | [![Build Status](https://secure.travis-ci.org/marijnh/CodeMirror.png?branch=master)](http://travis-ci.org/marijnh/CodeMirror) 3 | [![NPM version](https://badge.fury.io/js/codemirror.png)](http://badge.fury.io/js/codemirror) 4 | 5 | CodeMirror is a JavaScript component that provides a code editor in 6 | the browser. When a mode is available for the language you are coding 7 | in, it will color your code, and optionally help with indentation. 8 | 9 | The project page is http://codemirror.net 10 | The manual is at http://codemirror.net/doc/manual.html 11 | The contributing guidelines are in [CONTRIBUTING.md](https://github.com/marijnh/CodeMirror/blob/master/CONTRIBUTING.md) 12 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/dialog/dialog.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-dialog { 2 | position: absolute; 3 | left: 0; right: 0; 4 | background: white; 5 | z-index: 15; 6 | padding: .1em .8em; 7 | overflow: hidden; 8 | color: #333; 9 | } 10 | 11 | .CodeMirror-dialog-top { 12 | border-bottom: 1px solid #eee; 13 | top: 0; 14 | } 15 | 16 | .CodeMirror-dialog-bottom { 17 | border-top: 1px solid #eee; 18 | bottom: 0; 19 | } 20 | 21 | .CodeMirror-dialog input { 22 | border: none; 23 | outline: none; 24 | background: transparent; 25 | width: 20em; 26 | color: inherit; 27 | font-family: monospace; 28 | } 29 | 30 | .CodeMirror-dialog button { 31 | font-size: 70%; 32 | } 33 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/edit/continuelist.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 'use strict'; 3 | 4 | var listRE = /^(\s*)([*+-]|(\d+)\.)(\s*)/, 5 | unorderedBullets = '*+-'; 6 | 7 | CodeMirror.commands.newlineAndIndentContinueMarkdownList = function(cm) { 8 | var pos = cm.getCursor(), 9 | inList = cm.getStateAfter(pos.line).list !== false, 10 | match; 11 | 12 | if (!inList || !(match = cm.getLine(pos.line).match(listRE))) { 13 | cm.execCommand('newlineAndIndent'); 14 | return; 15 | } 16 | 17 | var indent = match[1], after = match[4]; 18 | var bullet = unorderedBullets.indexOf(match[2]) >= 0 19 | ? match[2] 20 | : (parseInt(match[3], 10) + 1) + '.'; 21 | 22 | cm.replaceSelection('\n' + indent + bullet + after, 'end'); 23 | }; 24 | 25 | }()); 26 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/edit/trailingspace.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineOption("showTrailingSpace", false, function(cm, val, prev) { 2 | if (prev == CodeMirror.Init) prev = false; 3 | if (prev && !val) 4 | cm.removeOverlay("trailingspace"); 5 | else if (!prev && val) 6 | cm.addOverlay({ 7 | token: function(stream) { 8 | for (var l = stream.string.length, i = l; i && /\s/.test(stream.string.charAt(i - 1)); --i) {} 9 | if (i > stream.pos) { stream.pos = i; return null; } 10 | stream.pos = l; 11 | return "trailingspace"; 12 | }, 13 | name: "trailingspace" 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/fold/foldgutter.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-foldmarker { 2 | color: blue; 3 | text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px; 4 | font-family: arial; 5 | line-height: .3; 6 | cursor: pointer; 7 | } 8 | .CodeMirror-foldgutter { 9 | width: .7em; 10 | } 11 | .CodeMirror-foldgutter-open, 12 | .CodeMirror-foldgutter-folded { 13 | color: #555; 14 | cursor: pointer; 15 | } 16 | .CodeMirror-foldgutter-open:after { 17 | content: "\25BE"; 18 | } 19 | .CodeMirror-foldgutter-folded:after { 20 | content: "\25B8"; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/hint/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | .CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/lint/coffeescript-lint.js: -------------------------------------------------------------------------------- 1 | // Depends on coffeelint.js from http://www.coffeelint.org/js/coffeelint.js 2 | 3 | // declare global: coffeelint 4 | 5 | CodeMirror.registerHelper("lint", "coffeescript", function(text) { 6 | var found = []; 7 | var parseError = function(err) { 8 | var loc = err.lineNumber; 9 | found.push({from: CodeMirror.Pos(loc-1, 0), 10 | to: CodeMirror.Pos(loc, 0), 11 | severity: err.level, 12 | message: err.message}); 13 | }; 14 | try { 15 | var res = coffeelint.lint(text); 16 | for(var i = 0; i < res.length; i++) { 17 | parseError(res[i]); 18 | } 19 | } catch(e) { 20 | found.push({from: CodeMirror.Pos(e.location.first_line, 0), 21 | to: CodeMirror.Pos(e.location.last_line, e.location.last_column), 22 | severity: 'error', 23 | message: e.message}); 24 | } 25 | return found; 26 | }); 27 | CodeMirror.coffeeValidator = CodeMirror.lint.coffeescript; // deprecated 28 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/lint/css-lint.js: -------------------------------------------------------------------------------- 1 | // Depends on csslint.js from https://github.com/stubbornella/csslint 2 | 3 | // declare global: CSSLint 4 | 5 | CodeMirror.registerHelper("lint", "css", function(text) { 6 | var found = []; 7 | var results = CSSLint.verify(text), messages = results.messages, message = null; 8 | for ( var i = 0; i < messages.length; i++) { 9 | message = messages[i]; 10 | var startLine = message.line -1, endLine = message.line -1, startCol = message.col -1, endCol = message.col; 11 | found.push({ 12 | from: CodeMirror.Pos(startLine, startCol), 13 | to: CodeMirror.Pos(endLine, endCol), 14 | message: message.message, 15 | severity : message.type 16 | }); 17 | } 18 | return found; 19 | }); 20 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/lint/json-lint.js: -------------------------------------------------------------------------------- 1 | // Depends on jsonlint.js from https://github.com/zaach/jsonlint 2 | 3 | // declare global: jsonlint 4 | 5 | CodeMirror.registerHelper("lint", "json", function(text) { 6 | var found = []; 7 | jsonlint.parseError = function(str, hash) { 8 | var loc = hash.loc; 9 | found.push({from: CodeMirror.Pos(loc.first_line - 1, loc.first_column), 10 | to: CodeMirror.Pos(loc.last_line - 1, loc.last_column), 11 | message: str}); 12 | }; 13 | try { jsonlint.parse(text); } 14 | catch(e) {} 15 | return found; 16 | }); 17 | CodeMirror.jsonValidator = CodeMirror.lint.json; // deprecated 18 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/mode/multiplex_test.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | CodeMirror.defineMode("markdown_with_stex", function(){ 3 | var inner = CodeMirror.getMode({}, "stex"); 4 | var outer = CodeMirror.getMode({}, "markdown"); 5 | 6 | var innerOptions = { 7 | open: '$', 8 | close: '$', 9 | mode: inner, 10 | delimStyle: 'delim', 11 | innerStyle: 'inner' 12 | }; 13 | 14 | return CodeMirror.multiplexingMode(outer, innerOptions); 15 | }); 16 | 17 | var mode = CodeMirror.getMode({}, "markdown_with_stex"); 18 | 19 | function MT(name) { 20 | test.mode( 21 | name, 22 | mode, 23 | Array.prototype.slice.call(arguments, 1), 24 | 'multiplexing'); 25 | } 26 | 27 | MT( 28 | "stexInsideMarkdown", 29 | "[strong **Equation:**] [delim $][inner&tag \\pi][delim $]"); 30 | })(); 31 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/runmode/colorize.js: -------------------------------------------------------------------------------- 1 | CodeMirror.colorize = (function() { 2 | 3 | var isBlock = /^(p|li|div|h\\d|pre|blockquote|td)$/; 4 | 5 | function textContent(node, out) { 6 | if (node.nodeType == 3) return out.push(node.nodeValue); 7 | for (var ch = node.firstChild; ch; ch = ch.nextSibling) { 8 | textContent(ch, out); 9 | if (isBlock.test(node.nodeType)) out.push("\n"); 10 | } 11 | } 12 | 13 | return function(collection, defaultMode) { 14 | if (!collection) collection = document.body.getElementsByTagName("pre"); 15 | 16 | for (var i = 0; i < collection.length; ++i) { 17 | var node = collection[i]; 18 | var mode = node.getAttribute("data-lang") || defaultMode; 19 | if (!mode) continue; 20 | 21 | var text = []; 22 | textContent(node, text); 23 | node.innerHTML = ""; 24 | CodeMirror.runMode(text.join(""), mode, node); 25 | 26 | node.className += " cm-s-default"; 27 | } 28 | }; 29 | })(); 30 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/addon/scroll/scrollpastend.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | "use strict"; 3 | 4 | CodeMirror.defineOption("scrollPastEnd", false, function(cm, val, old) { 5 | if (old && old != CodeMirror.Init) { 6 | cm.off("change", onChange); 7 | cm.display.lineSpace.parentNode.style.paddingBottom = ""; 8 | cm.state.scrollPastEndPadding = null; 9 | } 10 | if (val) { 11 | cm.on("change", onChange); 12 | updateBottomMargin(cm); 13 | } 14 | }); 15 | 16 | function onChange(cm, change) { 17 | if (CodeMirror.changeEnd(change).line == cm.lastLine()) 18 | updateBottomMargin(cm); 19 | } 20 | 21 | function updateBottomMargin(cm) { 22 | var padding = ""; 23 | if (cm.lineCount() > 1) { 24 | var totalH = cm.display.scroller.clientHeight - 30, 25 | lastLineH = cm.getLineHandle(cm.lastLine()).height; 26 | padding = (totalH - lastLineH) + "px"; 27 | } 28 | if (cm.state.scrollPastEndPadding != padding) { 29 | cm.state.scrollPastEndPadding = padding; 30 | cm.display.lineSpace.parentNode.style.paddingBottom = padding; 31 | cm.setSize(); 32 | } 33 | } 34 | })(); 35 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CodeMirror", 3 | "main": ["lib/codemirror.js", "lib/codemirror.css"], 4 | "ignore": [ 5 | "**/.*", 6 | "node_modules", 7 | "components", 8 | "bin", 9 | "demo", 10 | "doc", 11 | "test", 12 | "index.html", 13 | "package.json" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/mode/diff/diff.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineMode("diff", function() { 2 | 3 | var TOKEN_NAMES = { 4 | '+': 'positive', 5 | '-': 'negative', 6 | '@': 'meta' 7 | }; 8 | 9 | return { 10 | token: function(stream) { 11 | var tw_pos = stream.string.search(/[\t ]+?$/); 12 | 13 | if (!stream.sol() || tw_pos === 0) { 14 | stream.skipToEnd(); 15 | return ("error " + ( 16 | TOKEN_NAMES[stream.string.charAt(0)] || '')).replace(/ $/, ''); 17 | } 18 | 19 | var token_name = TOKEN_NAMES[stream.peek()] || stream.skipToEnd(); 20 | 21 | if (tw_pos === -1) { 22 | stream.skipToEnd(); 23 | } else { 24 | stream.pos = tw_pos; 25 | } 26 | 27 | return token_name; 28 | } 29 | }; 30 | }); 31 | 32 | CodeMirror.defineMIME("text/x-diff", "diff"); 33 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/mode/rpm/changes/changes.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineMode("changes", function() { 2 | var headerSeperator = /^-+$/; 3 | var headerLine = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ?\d{1,2} \d{2}:\d{2}(:\d{2})? [A-Z]{3,4} \d{4} - /; 4 | var simpleEmail = /^[\w+.-]+@[\w.-]+/; 5 | 6 | return { 7 | token: function(stream) { 8 | if (stream.sol()) { 9 | if (stream.match(headerSeperator)) { return 'tag'; } 10 | if (stream.match(headerLine)) { return 'tag'; } 11 | } 12 | if (stream.match(simpleEmail)) { return 'string'; } 13 | stream.next(); 14 | return null; 15 | } 16 | }; 17 | }); 18 | 19 | CodeMirror.defineMIME("text/x-rpm-changes", "changes"); 20 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/mode/rpm/spec/spec.css: -------------------------------------------------------------------------------- 1 | .cm-s-default span.cm-preamble {color: #b26818; font-weight: bold;} 2 | .cm-s-default span.cm-macro {color: #b218b2;} 3 | .cm-s-default span.cm-section {color: green; font-weight: bold;} 4 | .cm-s-default span.cm-script {color: red;} 5 | .cm-s-default span.cm-issue {color: yellow;} 6 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- 1 | .cm-tw-syntaxerror { 2 | color: #FFF; 3 | background-color: #900; 4 | } 5 | 6 | .cm-tw-deleted { 7 | text-decoration: line-through; 8 | } 9 | 10 | .cm-tw-header5 { 11 | font-weight: bold; 12 | } 13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/ 14 | padding-left: 10px; 15 | } 16 | 17 | .cm-tw-box { 18 | border-top-width: 0px ! important; 19 | border-style: solid; 20 | border-width: 1px; 21 | border-color: inherit; 22 | } 23 | 24 | .cm-tw-underline { 25 | text-decoration: underline; 26 | } -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codemirror", 3 | "version":"3.20.0", 4 | "main": "lib/codemirror.js", 5 | "description": "In-browser code editing made bearable", 6 | "licenses": [{"type": "MIT", 7 | "url": "http://codemirror.net/LICENSE"}], 8 | "directories": {"lib": "./lib"}, 9 | "scripts": {"test": "node ./test/run.js"}, 10 | "devDependencies": {"node-static": "0.6.0"}, 11 | "bugs": "http://github.com/marijnh/CodeMirror/issues", 12 | "keywords": ["JavaScript", "CodeMirror", "Editor"], 13 | "homepage": "http://codemirror.net", 14 | "maintainers":[{"name": "Marijn Haverbeke", 15 | "email": "marijnh@gmail.com", 16 | "web": "http://marijnhaverbeke.nl"}], 17 | "repository": {"type": "git", 18 | "url": "http://marijnhaverbeke.nl/git/codemirror"} 19 | } 20 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- 1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom {color: #762;} 2 | .cm-s-elegant span.cm-comment {color: #262; font-style: italic; line-height: 1em;} 3 | .cm-s-elegant span.cm-meta {color: #555; font-style: italic; line-height: 1em;} 4 | .cm-s-elegant span.cm-variable {color: black;} 5 | .cm-s-elegant span.cm-variable-2 {color: #b11;} 6 | .cm-s-elegant span.cm-qualifier {color: #555;} 7 | .cm-s-elegant span.cm-keyword {color: #730;} 8 | .cm-s-elegant span.cm-builtin {color: #30a;} 9 | .cm-s-elegant span.cm-link {color: #762;} 10 | .cm-s-elegant span.cm-error {background-color: #fdd;} 11 | 12 | .cm-s-elegant .CodeMirror-activeline-background {background: #e8f2ff !important;} 13 | .cm-s-elegant .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 14 | -------------------------------------------------------------------------------- /plugins/codemirror/codemirror/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta {color: #555;} 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | 11 | .cm-s-neat .CodeMirror-activeline-background {background: #e8f2ff !important;} 12 | .cm-s-neat .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 13 | -------------------------------------------------------------------------------- /plugins/codemirror/install/codemirror.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/codemirror/codemirror.plugin.php 4 | active 5 | 15 6 | CodeMirror 7 | CodeMirror is a JavaScript component that provides a code editor in the browser. 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/markdown/README.md: -------------------------------------------------------------------------------- 1 | Markdown 2 | ====================== 3 | 4 | Markdown Syntax Documentation: [http://daringfireball.net/projects/markdown/syntax](http://daringfireball.net/projects/markdown/syntax) -------------------------------------------------------------------------------- /plugins/markdown/install/markdown.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/markdown/markdown.plugin.php 4 | active 5 | 10 6 | Markdown 7 | Markdown markup language plugin for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | -------------------------------------------------------------------------------- /plugins/markdown/markdown.plugin.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | PHP Markdown Lib - Readme 24 | 25 | 26 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /plugins/markdown/php-markdown/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "michelf/php-markdown", 3 | "type": "library", 4 | "description": "PHP Markdown", 5 | "homepage": "http://michelf.ca/projects/php-markdown/", 6 | "keywords": ["markdown"], 7 | "license": "BSD-3-Clause", 8 | "authors": [ 9 | { 10 | "name": "Michel Fortin", 11 | "email": "michel.fortin@michelf.ca", 12 | "homepage": "http://michelf.ca/", 13 | "role": "Developer" 14 | }, 15 | { 16 | "name": "John Gruber", 17 | "homepage": "http://daringfireball.net/" 18 | } 19 | ], 20 | "require": { 21 | "php": ">=5.3.0" 22 | }, 23 | "autoload": { 24 | "psr-0": { "Michelf": "" } 25 | }, 26 | "extra": { 27 | "branch-alias": { 28 | "dev-lib": "1.3.x-dev" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /plugins/markitup/install/markitup.manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/markitup/markitup.plugin.php 4 | active 5 | 15 6 | MarkItUp! 7 | MarkItUp! universal markup jQuery editor 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | 12 | -------------------------------------------------------------------------------- /plugins/markitup/markitup/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Allow from all -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/bold.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/clean.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/colors.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h1.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h2.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h3.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h4.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h5.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/h6.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/italic.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/link.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/list-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/list-bullet.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/list-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/list-item.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/list-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/list-numeric.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/paragraph.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/picture.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/preview.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/sets/html/images/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/sets/html/images/stroke.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/skins/simple/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/skins/simple/images/handle.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/skins/simple/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/skins/simple/images/menu.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/skins/simple/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/plugins/markitup/markitup/skins/simple/images/submenu.png -------------------------------------------------------------------------------- /plugins/markitup/markitup/templates/preview.css: -------------------------------------------------------------------------------- 1 | /* preview style examples */ 2 | body { background-color:#fff; font:100% "Helvetica Neue", Helvetica, Arial, sans-serif; } -------------------------------------------------------------------------------- /plugins/markitup/markitup/templates/preview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | markItUp! preview template 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/sandbox/install/sandbox.install.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | plugins/sandbox/sandbox.plugin.php 4 | active 5 | 15 6 | Sandbox 7 | Sandbox plugin for Monstra 8 | 1.0.0 9 | Awilum 10 | http://monstra.org/ 11 | -------------------------------------------------------------------------------- /plugins/sandbox/install/sandbox.uninstall.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox plugin pro Monstra', 7 | 'Sandbox template' => 'Sandbox téma', 8 | 'Save' => 'Uložit', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/de.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox Plugin für Monstra', 7 | 'Sandbox template' => 'Sandbox Template', 8 | 'Save' => 'Speichern', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/en.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox plugin for Monstra', 7 | 'Sandbox template' => 'Sandbox template', 8 | 'Save' => 'Save', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/es.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox plugin for Monstra', 7 | 'Sandbox template' => 'Plantilla sandbox', 8 | 'Save' => 'Guardar', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/fa.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'سندباکس', 6 | 'Sandbox plugin for Monstra' => 'پلاگین سندباکس برای مونسترا', 7 | 'Sandbox template' => 'قالب سندباکس', 8 | 'Save' => 'ذخیره', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/fr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Plugin Sandbox pour Monstra', 7 | 'Sandbox template' => 'Modèle Sandbox', 8 | 'Save' => 'Enregistrer', 9 | ) 10 | ); -------------------------------------------------------------------------------- /plugins/sandbox/languages/id.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Plugin Sandbox untuk Monstra', 7 | 'Sandbox template' => 'Template Sandbox', 8 | 'Save' => 'Simpan', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/it.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Plugin Sandbox per Monstra', 7 | 'Sandbox template' => 'Modello Sandbox', 8 | 'Save' => 'Salva', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/ka-ge.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox-ის პლაგინი Monstra-თვის', 7 | 'Sandbox template' => 'Sandbox-ის ნიმუში', 8 | 'Save' => 'შენახვა', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/lt.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox papildinys', 7 | 'Sandbox template' => 'Sandbox šablonas', 8 | 'Save' => 'Išsaugoti', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/nl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox Plugin voor Monstra', 7 | 'Sandbox template' => 'Sandbox Template', 8 | 'Save' => 'Opslaan', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/pl.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Wtyczka Sandbox dla systemu Monstra', 7 | 'Sandbox template' => 'Szablon Sandbox', 8 | 'Save' => 'Zapisz', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/pt-br.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Caixa de Areia', 6 | 'Sandbox plugin for Monstra' => 'Plugin Caixa de Areia para o Monstra CMS', 7 | 'Sandbox template' => 'Template da caixa de areia', 8 | 'Save' => 'Salvar', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/ru.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Песочница', 6 | 'Sandbox plugin for Monstra' => 'Плагин песочница для Monstra', 7 | 'Sandbox template' => 'Шаблон песочницы', 8 | 'Save' => 'Сохранить', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/sk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox plugin pre Monstra', 7 | 'Sandbox template' => 'Sandbox téma', 8 | 'Save' => 'Uložiť', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/sr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Sandbox', 6 | 'Sandbox plugin for Monstra' => 'Sandbox dodatak za Monstra', 7 | 'Sandbox template' => 'Sandbox šablon', 8 | 'Save' => 'Sačuvaj', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/tr.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Deneme', 6 | 'Sandbox plugin for Monstra' => 'Monstra için deneme/test eklentisi', 7 | 'Sandbox template' => 'Deneme şablonu', 8 | 'Save' => 'Kaydet', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/uk.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => 'Пісочниця', 6 | 'Sandbox plugin for Monstra' => 'Плагін пісочниця для Monstra', 7 | 'Sandbox template' => 'Шаблон пісочниці', 8 | 'Save' => 'Зберегти', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/languages/zh-cn.lang.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'Sandbox' => '沙盒', 6 | 'Sandbox plugin for Monstra' => 'Monstra 沙盒插件', 7 | 'Sandbox template' => '沙盒模板', 8 | 'Save' => '保存', 9 | ) 10 | ); 11 | -------------------------------------------------------------------------------- /plugins/sandbox/views/backend/index.view.php: -------------------------------------------------------------------------------- 1 | Sandbox backend view 2 | -------------------------------------------------------------------------------- /plugins/sandbox/views/frontend/index.view.php: -------------------------------------------------------------------------------- 1 | Sandbox frontend view 2 | -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/img/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/blue.png -------------------------------------------------------------------------------- /public/assets/img/chocolat/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/close.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/closew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/closew.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/left.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/leftw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/leftw.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/loading.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/loadingw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/loadingw.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/right.gif -------------------------------------------------------------------------------- /public/assets/img/chocolat/rightw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/chocolat/rightw.gif -------------------------------------------------------------------------------- /public/assets/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/de.png -------------------------------------------------------------------------------- /public/assets/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/en.png -------------------------------------------------------------------------------- /public/assets/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/es.png -------------------------------------------------------------------------------- /public/assets/img/flags/fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/fa.png -------------------------------------------------------------------------------- /public/assets/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/fr.png -------------------------------------------------------------------------------- /public/assets/img/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/hu.png -------------------------------------------------------------------------------- /public/assets/img/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/id.png -------------------------------------------------------------------------------- /public/assets/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/it.png -------------------------------------------------------------------------------- /public/assets/img/flags/ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/ja.png -------------------------------------------------------------------------------- /public/assets/img/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/lt.png -------------------------------------------------------------------------------- /public/assets/img/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/nl.png -------------------------------------------------------------------------------- /public/assets/img/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/pl.png -------------------------------------------------------------------------------- /public/assets/img/flags/pt-br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/pt-br.png -------------------------------------------------------------------------------- /public/assets/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/ru.png -------------------------------------------------------------------------------- /public/assets/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/sk.png -------------------------------------------------------------------------------- /public/assets/img/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/sr.png -------------------------------------------------------------------------------- /public/assets/img/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/tr.png -------------------------------------------------------------------------------- /public/assets/img/flags/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/uk.png -------------------------------------------------------------------------------- /public/assets/img/flags/zh-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/flags/zh-cn.png -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/assets/img/monstra-logo-256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/monstra-logo-256px.png -------------------------------------------------------------------------------- /public/assets/img/monstra-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/assets/img/monstra-logo.png -------------------------------------------------------------------------------- /public/themes/default/blog-post.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 5 |
    6 | 7 |
    8 |
    9 | 10 |
    11 |
    12 | 13 |
    14 |
    15 |
    16 | 17 |
    18 | / 19 |
    20 |
    21 | 22 |
    23 |
    24 | 25 |
    26 |
    27 | 28 |
    29 | 30 |
    31 | 32 | -------------------------------------------------------------------------------- /public/themes/default/blog.template.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 |
    5 | 6 |
    7 |
    8 | 9 |
    10 |
    11 | 12 |
    13 |
    14 | 15 |
    16 |
    17 |

    Tags

    18 | 19 |
    20 |
    21 | 22 |
    23 |
    24 | 25 |
    26 |
    27 | 28 |
    29 | 30 |
    31 | 32 | -------------------------------------------------------------------------------- /public/themes/default/footer-links.chunk.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/themes/default/footer.chunk.php: -------------------------------------------------------------------------------- 1 |
    2 |
    3 |
    4 |
    5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/themes/default/index.template.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 |
    5 | 6 |
    7 |
    8 | 9 |
    10 |
    11 | 12 |
    13 |
    14 | 15 |
    16 |
    17 | 18 |
    19 |
    20 | 21 |
    22 |
    23 | 24 |
    25 | 26 |
    27 | 28 | -------------------------------------------------------------------------------- /public/uploads/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/public/uploads/.empty -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /admin/ 3 | Disallow: /engine/ 4 | Disallow: /libraries/ 5 | Disallow: /plugins/ -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /storage/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /storage/blocks/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/storage/blocks/.empty -------------------------------------------------------------------------------- /storage/database/menu.table.xml: -------------------------------------------------------------------------------- 1 | 2 | 4130152dec4dHomehome12b8f8bb4dafUsersusers34c4d4cab28eBlogblog2 3 | -------------------------------------------------------------------------------- /storage/database/users.table.xml: -------------------------------------------------------------------------------- 1 | 2 | 0 -------------------------------------------------------------------------------- /storage/emails/new-password.email.php: -------------------------------------------------------------------------------- 1 | Dear , 2 |

    3 | As you requested, your password has now been reset.
    4 | Your new details are as follows: 5 |

    6 | Username:
    7 | Password: 8 |

    9 | To change your password, please visit this page: /users/ 10 |

    11 | All the best,
    12 | 13 | -------------------------------------------------------------------------------- /storage/emails/new-user.email.php: -------------------------------------------------------------------------------- 1 | Welcome to ! 2 |

    3 | Dear , 4 |

    5 | Thanks for registering at !
    We are glad you have chosen to be a part of our community and we hope you enjoy your stay. 6 |

    7 | All the best,
    8 | 9 | -------------------------------------------------------------------------------- /storage/emails/reset-password.email.php: -------------------------------------------------------------------------------- 1 | Dear , 2 |

    3 | You have requested to reset your password on because you have forgotten your password. 4 | If you did not request this, please ignore it. 5 |

    6 | To reset your password, please visit the following page:
    7 | /users/password-reset?hash= 8 |

    9 | When you visit that page, your password will be reset, and the new password will be emailed to you. 10 |

    11 | Your username is: 12 |

    13 | To edit your profile, go to this page:
    14 | /users/ 15 |

    16 | All the best,
    17 | 18 | -------------------------------------------------------------------------------- /storage/pages/1.page.txt: -------------------------------------------------------------------------------- 1 | <h2>404 Page Not Found</h2><div>We're sorry but the page you are looking for doesn't appear to exist!</div> -------------------------------------------------------------------------------- /storage/pages/4.page.txt: -------------------------------------------------------------------------------- 1 | <p>Welcome to Monstra Blog.<br> 2 | This is your first post. Edit or delete it, then start blogging!</p> -------------------------------------------------------------------------------- /storage/snippets/google-analytics.snippet.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all -------------------------------------------------------------------------------- /tmp/cache/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/tmp/cache/.empty -------------------------------------------------------------------------------- /tmp/logs/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/tmp/logs/.empty -------------------------------------------------------------------------------- /tmp/minify/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monstra-cms/monstra/5f6573facc118f476ab49103c1b42a32918d43dd/tmp/minify/.empty -------------------------------------------------------------------------------- /tmp/minify/.htaccess: -------------------------------------------------------------------------------- 1 | Allow from all --------------------------------------------------------------------------------