Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neurocracy/drupal-omnipedia-block
Provides various blocks for Omnipedia.
https://github.com/neurocracy/drupal-omnipedia-block
drupal drupal-module php
Last synced: 18 days ago
JSON representation
Provides various blocks for Omnipedia.
- Host: GitHub
- URL: https://github.com/neurocracy/drupal-omnipedia-block
- Owner: neurocracy
- License: gpl-2.0
- Created: 2022-06-04T00:58:08.000Z (over 2 years ago)
- Default Branch: 6.x
- Last Pushed: 2024-12-23T00:37:43.000Z (about 1 month ago)
- Last Synced: 2024-12-23T01:26:21.742Z (about 1 month ago)
- Topics: drupal, drupal-module, php
- Language: PHP
- Homepage:
- Size: 3.53 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
This contains the source files for the "*Omnipedia - Block*" Drupal module,
which contains various block plug-ins and related code for
[Omnipedia](https://omnipedia.app/)⚠️ ***[Why open source? / Spoiler warning](https://omnipedia.app/open-source)***
----
# Requirements
* [Drupal 9.5, 10, or 11](https://www.drupal.org/download) ([Drupal 8 is end-of-life](https://www.drupal.org/psa-2021-11-30))
* PHP 8.1
* [Composer](https://getcomposer.org/)
## Drupal dependencies
Before attempting to install this, you must add the Composer repositories as
described in the installation instructions for these dependencies:* The [`ambientimpact_core` module](https://github.com/Ambient-Impact/drupal-ambientimpact-core).
* The following Omnipedia modules:
* [`omnipedia_changes`](https://github.com/neurocracy/drupal-omnipedia-changes)
* [`omnipedia_content`](https://github.com/neurocracy/drupal-omnipedia-content)
* [`omnipedia_core`](https://github.com/neurocracy/drupal-omnipedia-core)
* [`omnipedia_date`](https://github.com/neurocracy/drupal-omnipedia-date)
* [`omnipedia_main_page`](https://github.com/neurocracy/drupal-omnipedia-main-page)
* [`omnipedia_search`](https://github.com/neurocracy/drupal-omnipedia-search)
## Front-end dependencies
To build front-end assets for this project, [Node.js](https://nodejs.org/) and
[Yarn](https://yarnpkg.com/) are required.----
# Installation
## Composer
### Set up
Ensure that you have your Drupal installation set up with the correct Composer
installer types such as those provided by [the `drupal/recommended-project`
template](https://www.drupal.org/docs/develop/using-composer/starting-a-site-using-drupal-composer-project-templates#s-drupalrecommended-project).
If you're starting from scratch, simply requiring that template and following
[the Drupal.org Composer
documentation](https://www.drupal.org/docs/develop/using-composer/starting-a-site-using-drupal-composer-project-templates)
should get you up and running.### Repository
In your root `composer.json`, add the following to the `"repositories"` section:
```json
"drupal/omnipedia_block": {
"type": "vcs",
"url": "https://github.com/neurocracy/drupal-omnipedia-block.git"
}
```### Installing
Once you've completed all of the above, run `composer require
"drupal/omnipedia_block:^6.0@dev"` in the root of your project to have
Composer install this and its required dependencies for you.## Front-end assets
To build front-end assets for this project, you'll need to install
[Node.js](https://nodejs.org/) and [Yarn](https://yarnpkg.com/).This package makes use of [Yarn
Workspaces](https://yarnpkg.com/features/workspaces) and references other local
workspace dependencies. In the `package.json` in the root of your Drupal
project, you'll need to add the following:```json
"workspaces": [
"/modules/custom/*"
],
```where `` is your public Drupal directory name, `web` by default.
Once those are defined, add the following to the `"dependencies"` section of
your top-level `package.json`:```json
"drupal-omnipedia-block": "workspace:^6"
```Then run `yarn install` and let Yarn do the rest.
### Optional: install yarn.BUILD
While not required, [yarn.BUILD](https://yarn.build/) is recommended to make
building all of the front-end assets even easier.----
# Building front-end assets
This uses [Webpack](https://webpack.js.org/) and [Symfony Webpack
Encore](https://symfony.com/doc/current/frontend.html) to automate most of the
build process. These will have been installed for you if you followed the Yarn
installation instructions above.If you have [yarn.BUILD](https://yarn.build/) installed, you can run:
```
yarn build
```from the root of your Drupal site. If you want to build just this package, run:
```
yarn workspace drupal-omnipedia-block run build
```----
# Major breaking changes
The following major version bumps indicate breaking changes:
* 4.x - Front-end package manager is now [Yarn](https://yarnpkg.com/); front-end build process ported to [Webpack](https://webpack.js.org/).
* 5.x:
* Requires Drupal 9.5 or [Drupal 10](https://www.drupal.org/project/drupal/releases/10.0.0).
* Increases minimum version of [Hook Event Dispatcher](https://www.drupal.org/project/hook_event_dispatcher) to 3.1, removes deprecated code, and adds support for 4.0 which supports Drupal 10.
* 6.x:
* Removed all use of the `omnipedia_commerce` module and removed it from dependencies.
* Removed the [`\Drupal\omnipedia_block\Plugin\Block\Join` block](https://github.com/neurocracy/drupal-omnipedia-block/blob/5.x/src/Plugin/Block/Join.php); you can still find it in the 5.x and older branches.
* Removed all use of the `omnipedia_access` module and removed it from dependencies.
* Removed all use of the `permissions_by_term:access_result_cache` cache tag, removing reliance on the [Permissions by Term module](https://www.drupal.org/project/permissions_by_term).