├── .travis.yml ├── README.md ├── block_newblock.php ├── composer.json ├── db └── access.php ├── edit_form.php ├── lang └── en │ └── block_newblock.php ├── settings.php └── version.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/README.md -------------------------------------------------------------------------------- /block_newblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/block_newblock.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/composer.json -------------------------------------------------------------------------------- /db/access.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/db/access.php -------------------------------------------------------------------------------- /edit_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/edit_form.php -------------------------------------------------------------------------------- /lang/en/block_newblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/lang/en/block_newblock.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/settings.php -------------------------------------------------------------------------------- /version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielneis/moodle-block_newblock/HEAD/version.php --------------------------------------------------------------------------------