├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── _build ├── build.php ├── config.inc.php ├── elements │ ├── chunks.php │ ├── plugins.php │ ├── settings.php │ └── snippets.php └── resolvers │ ├── _symlinks.php │ └── setup.php ├── assets └── components │ └── fetchit │ ├── action.php │ ├── index.html │ └── js │ ├── fetchit.js │ └── fetchit.min.js ├── core └── components │ └── fetchit │ ├── docs │ ├── changelog.txt │ ├── license.txt │ └── readme.txt │ ├── elements │ ├── chunks │ │ └── example.tpl │ ├── plugins │ │ └── fetchit.php │ └── snippets │ │ └── fetchit.php │ ├── lexicon │ ├── en │ │ ├── default.inc.php │ │ ├── properties.inc.php │ │ └── setting.inc.php │ └── ru │ │ ├── default.inc.php │ │ ├── properties.inc.php │ │ └── setting.inc.php │ └── model │ └── fetchit.class.php ├── fetchit-logo.svg ├── package.json ├── rollup.config.js └── src └── index.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/README.md -------------------------------------------------------------------------------- /_build/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/build.php -------------------------------------------------------------------------------- /_build/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/config.inc.php -------------------------------------------------------------------------------- /_build/elements/chunks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/elements/chunks.php -------------------------------------------------------------------------------- /_build/elements/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/elements/plugins.php -------------------------------------------------------------------------------- /_build/elements/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/elements/settings.php -------------------------------------------------------------------------------- /_build/elements/snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/elements/snippets.php -------------------------------------------------------------------------------- /_build/resolvers/_symlinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/resolvers/_symlinks.php -------------------------------------------------------------------------------- /_build/resolvers/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/_build/resolvers/setup.php -------------------------------------------------------------------------------- /assets/components/fetchit/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/assets/components/fetchit/action.php -------------------------------------------------------------------------------- /assets/components/fetchit/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/fetchit/js/fetchit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/assets/components/fetchit/js/fetchit.js -------------------------------------------------------------------------------- /assets/components/fetchit/js/fetchit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/assets/components/fetchit/js/fetchit.min.js -------------------------------------------------------------------------------- /core/components/fetchit/docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/docs/changelog.txt -------------------------------------------------------------------------------- /core/components/fetchit/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/docs/license.txt -------------------------------------------------------------------------------- /core/components/fetchit/docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/docs/readme.txt -------------------------------------------------------------------------------- /core/components/fetchit/elements/chunks/example.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/elements/chunks/example.tpl -------------------------------------------------------------------------------- /core/components/fetchit/elements/plugins/fetchit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/elements/plugins/fetchit.php -------------------------------------------------------------------------------- /core/components/fetchit/elements/snippets/fetchit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/elements/snippets/fetchit.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/en/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/en/default.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/en/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/en/properties.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/en/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/en/setting.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/ru/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/ru/default.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/ru/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/ru/properties.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/lexicon/ru/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/lexicon/ru/setting.inc.php -------------------------------------------------------------------------------- /core/components/fetchit/model/fetchit.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/core/components/fetchit/model/fetchit.class.php -------------------------------------------------------------------------------- /fetchit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/fetchit-logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GulomovCreative/FetchIt/HEAD/src/index.js --------------------------------------------------------------------------------