Content types are the backbone of content management in Drupal. In Drupal 10, you can create custom content types to structure and organize your content. This blog post will guide you through the process of creating content types programmatically in Drupal 10, allowing you to tailor your website's content structure to your specific needs.
Prerequisites
Before creating custom content types programmatically in Drupal 10, you should have the following:
- A working Drupal 10 or 9 website.
- Basic knowledge of Drupal site building and module development.
- Familiarity with PHP and Drupal's module structure.
Step 1: Define the Custom Module
To create a custom content type programmatically, you need to place the code in a custom module. If you don't already have a custom module, you can create one by following these steps:
- In your Drupal installation, navigate to the sites/all/modules directory (or your preferred module location).
- Create a new directory for your custom module. Give it a unique and descriptive name, such as my_custom_content_type.
- Inside your module directory, create a my_custom_content_type.info.yml file with the following content:
name: 'My Custom Content Type Module'
type: module
description: 'Defines custom content types programmatically.'
core_version_requirement: ^9 || ^10
package: Custom
dependencies:
- nodeThis YAML file defines the basic information about your custom module.
Step 2: Create a Custom Content Type
To create a custom content type, you'll need to implement the hook_entity_type_build and hook_node_type_insert hooks within your custom module.
- Create a file named my_custom_content_type.module in your module directory.
- In this file, implement the hook_entity_type_build hook to define your custom content type. Here's an example:
/**
* Implements hook_entity_type_build().
*/
function my_custom_content_type_entity_type_build(array &$entity_types) {
$entity_types['node']->setClass('Drupal\my_custom_content_type\NodeTypeCustom');
}This code defines a custom class, NodeTypeCustom, to handle the configuration of your custom content type.
- Create the NodeTypeCustom class in a file named NodeTypeCustom.php and place it in your module's directory:
namespace Drupal\my_custom_content_type;
use Drupal\node\NodeTypeBase;
/**
* Provides a custom content type.
*/
class NodeTypeCustom extends NodeTypeBase {
/**
* {@inheritdoc}
*/
public function postSave(NodeTypeInterface $node_type) {
parent::postSave($node_type);
// Define the custom content type settings.
$config = \Drupal::configFactory()->getEditable('node.type.' . $node_type->id());
$config->set('name', 'Custom Content Type');
$config->set('description', 'A custom content type created programmatically.');
$config->set('new_revision', TRUE);
$config->save();
}
}n the NodeTypeCustom class, we extend the NodeTypeBase class to define the custom content type settings, such as the name and description.
Step 3: Enable and Verify Your Custom Content Type
- In your Drupal admin interface, navigate to Extend (admin/modules) and enable your custom module, "My Custom Content Type Module."
- After enabling the module, go to Structure > Content types (admin/structure/types) to see your custom content type listed as "Custom Content Type."
Conclusion
Creating custom content types programmatically in Drupal 10 allows you to define content structures that fit your specific project requirements. By following the steps outlined in this blog post, you can easily create and configure custom content types within your Drupal website, providing a flexible and tailored content management experience.
In Drupal 9 and 10, custom modules should be stored in the "modules/custom" directory rather than "sites/all/modules." Drupal's module directory structure has evolved, and the recommended practice is to place custom modules in the "modules/custom" directory to follow the modern Drupal standards.
So, if you're creating a custom module in Drupal 9 or 10, you should place it in the following directory:
/sites/all/modules/custom/By following this structure, your custom modules will be more organized and adhere to Drupal's best practices, making it easier to manage and maintain your site's codebase.
Comment
Откройте для себя https:/…
Откройте для себя https://icz.com.ua мир красоты, здоровья и вдохновения. Читайте полезные статьи о моде, уходе за собой, психологии, отношениях, семье, правильном питании, путешествиях и гармоничной жизни современной женщины.
Ежедневно публикуем https:/…
Ежедневно публикуем https://presslook.com.ua полезные статьи для женщин о здоровье, красоте, моде, психологии, любви, семье, кулинарии, саморазвитии, путешествиях, финансах и современных тенденциях образа жизни.
Все самое интересное https:/…
Все самое интересное https://ramledlightings.com для женщин в одном месте. Советы по уходу за собой, обзоры косметики, секреты красоты, идеи стильных образов, рекомендации по здоровью, отношениям и воспитанию детей.
Все самое интересное https:/…
Все самое интересное https://ramledlightings.com для женщин в одном месте. Советы по уходу за собой, обзоры косметики, секреты красоты, идеи стильных образов, рекомендации по здоровью, отношениям и воспитанию детей.
Ежедневно публикуем https:/…
Ежедневно публикуем https://presslook.com.ua полезные статьи для женщин о здоровье, красоте, моде, психологии, любви, семье, кулинарии, саморазвитии, путешествиях, финансах и современных тенденциях образа жизни.
Женский онлайн-журнал https:…
Женский онлайн-журнал https://lolitaquieretemucho.com с интересными материалами о красоте, здоровье, стиле, модных тенденциях, косметике, фитнесе, воспитании детей, домашнем уюте, карьере и личностном развитии.
Женский онлайн-журнал https:…
Женский онлайн-журнал https://lolitaquieretemucho.com с интересными материалами о красоте, здоровье, стиле, модных тенденциях, косметике, фитнесе, воспитании детей, домашнем уюте, карьере и личностном развитии.
лента нержавеющая лента 65г
лента нержавеющая лента 65г
лента х20н80 лента 12х18н10т…
лента х20н80 лента 12х18н10т купить
Детский центр https://run…
Детский центр https://run.org.ua развития и здоровья с комплексными программами для детей разных возрастов. Развивающие занятия, логопед, психолог, подготовка к школе, творческие кружки, физическое развитие, диагностика и индивидуальный подход к каждому ребенку.
Детский центр https://run…
Детский центр https://run.org.ua развития и здоровья с комплексными программами для детей разных возрастов. Развивающие занятия, логопед, психолог, подготовка к школе, творческие кружки, физическое развитие, диагностика и индивидуальный подход к каждому ребенку.
прайс лист лента стальная…
прайс лист лента стальная металлопрокат лента нижний новгород
лента 65г пружинная лента…
лента 65г пружинная лента хн78т
лента стальная производитель…
лента стальная производитель стальной ленты
лента жаростойкая лента…
лента жаростойкая лента стальная с доставкой
На сайті https://rest.od.ua…
На сайті https://rest.od.ua ви знайдете багато корисної інформації для кожного одесита: театральна афіша Одеси, карта та схема проїзду до всіх театрів та концертних майданчиків міста
На сайті https://rest.od.ua…
На сайті https://rest.od.ua ви знайдете багато корисної інформації для кожного одесита: театральна афіша Одеси, карта та схема проїзду до всіх театрів та концертних майданчиків міста
Find out check title status…
Find out check title status whether a car's clean-looking title hides a salvage past.
Trusted resource vin title…
Trusted resource vin title check checks whether a used car's title is really clean.
Нужен аккмулятор?…
Нужен аккмулятор? аккумуляторы по выгодной цене с подбором под ваш автомобиль. В наличии аккумуляторы популярных брендов, услуги установки, диагностика аккумулятора, прием старой АКБ и оперативная доставка по Санкт-Петербургу.
Подробности по ссылке: https…
Подробности по ссылке: https://pochtaops.ru/index-pochty-salehard-imeni-vasiliya-podshibyakina-89000001000009900
Нужен аккмулятор?…
Нужен аккмулятор? аккумуляторы спб по выгодной цене с подбором под ваш автомобиль. В наличии аккумуляторы популярных брендов, услуги установки, диагностика аккумулятора, прием старой АКБ и оперативная доставка по Санкт-Петербургу.
Последние публикации: https:…
Последние публикации: https://pochtaops.ru/index-pochty-kiknur-konstitucii-43011000001001600
Нужен аккмулятор? купить…
Нужен аккмулятор? купить аккумулятор спб по выгодной цене с подбором под ваш автомобиль. В наличии аккумуляторы популярных брендов, услуги установки, диагностика аккумулятора, прием старой АКБ и оперативная доставка по Санкт-Петербургу.
Все самое свежее здесь:…
Все самое свежее здесь: https://pochtaops.ru/index-pochty-salehard-imeni-vasiliya-podshibyakina-89000001000009900
Главные новости: https:/…
Главные новости: https://pochtaops.ru/index-pochty-ulica-lunacharskogo-dom-32-g-votkinskudmurtskaya-respublika-427438
Главные новости: https:/…
Главные новости: https://pochtaops.ru/index-pochty-korpus-turgay-sanatoriya-bakirovo-dom-0-g-bakirovo-leninogorskiy-rayontatarstan-respublika-423299
Расширенная статья здесь:…
Расширенная статья здесь: https://pochtaops.ru/
The official 888starz…
The official 888starz website in Egypt brings casino games and sports betting together on a single platform.
888starz showcases top-rated and newly added games within the casino lobby.
The sportsbook on the official 888starz site covers more than 50 sports from around the world.
Weekly promotions are available, including 50% cashback and insurance on bets.
The official 888starz site supports multiple payment methods including bank cards and e-wallets like Skrill and Neteller.
888starz [url=https://complice-st.com/]888starz apk[/url]
888starz apk [url=http:/…
888starz apk [url=http://vetsintez.com/]888starz apk[/url]
888starz provides a clear, user-friendly interface adapted for players in Uzbekistan.
888starz showcases top-rated and newly added games within the casino lobby.
888starz provides high payout rates and in-play betting during matches.
The official 888starz site gives new players in Uzbekistan a welcome package of up to 1500 euros with 150 free spins.
The official site provides continuous support all day in multiple languages across several channels.
True Fortune casino is one…
True Fortune casino is one of the most popular online casinos among players in the United Kingdom.
Live blackjack, roulette and game shows are available at any time of day.
The promotions page lists reload bonuses, tournaments and cashback offers.
Deposits are processed instantly so players can start playing within minutes.
Independent audits confirm the games are fair and payouts are genuine.
New users can check the FAQ for quick guidance on bonuses and payments.
true fortune 50 free spins no deposit [url=http://www.true-fortune-casino11.com/free-spins]true fortune 50 free spins no deposit[/url]
True Fortune casino has…
True Fortune casino has become a go-to online casino for many players in the United Kingdom.
The lobby showcases jackpot slots and the latest releases right at the top.
The promotions page lists reload bonuses, tournaments and cashback offers.
Players can fund their account via cards, digital wallets and modern payment services.
All games run on certified random number generators for provably fair results.
New users can check the FAQ for quick guidance on bonuses and payments.
true fortune casino 50 free chip code [url=https://true-fortune-casino27.com/free-chips/]true fortune casino 50 free chip code[/url]
Modern technology evolves…
Modern technology evolves https://karfaoqer.com
Портал о болезнях https:/…
Портал о болезнях https://pochkam.ru почек, диагностике и лечении заболеваний почек
Новое в категории: https:/…
Новое в категории: https://archeagewiki.ru
Самое полезное для вас:…
Самое полезное для вас: https://gi-wom.ru
Посмотреть на сайте: https:/…
Посмотреть на сайте: https://perfumerio.ru
The official True Fortune…
The official True Fortune website brings hundreds of games together on a single, easy-to-use platform.
Players can choose from a vast slot collection powered by top studios such as Microgaming and Yggdrasil.
True Fortune greets new users in the United Kingdom with a welcome package that boosts the first deposit.
Adding funds takes just a moment and play begins straight away.
Independent audits confirm the games are fair and payouts are genuine.
Clear rules and a well-organised help centre keep everything straightforward.
true fortune casino no deposit bonus codes [url=http://www.true-fortune-casino24.com/no-deposit-bonus/]true fortune casino no deposit bonus codes[/url]
Все лучшее здесь: https:/…
Все лучшее здесь: https://rysadba.ru/item/dom-74/
Новое в категории: https:/…
Новое в категории: https://rysadba.ru/contacty/
Наша лучшая подборка: https:…
Наша лучшая подборка: https://russkoitalslovar.ru/%D0%BB%D1%83%D0%BD%D0%B0
Только лучшие материалы:…
Только лучшие материалы: https://russkoitalslovar.ru/letter/%D0%94
Текущие рекомендации: https:…
Текущие рекомендации: https://russkoitalslovar.ru/%D0%B0%D0%B1%D0%B1%D0%B0%D1%82
Расширенная статья здесь:…
Расширенная статья здесь: https://perfumerio.ru/s/salvador-dali-1985-parfum/
Стальная лента — надёжный…
Стальная лента — надёжный упаковочный материал для обвязки грузов, и купить её выгодно можно напрямую со склада в России.
нихром нагартованный Х20Н80-Н [url=https://splavopedia.ru/kh20n80-n]https://splavopedia.ru/kh20n80-n/[/url]
Текущие рекомендации: https:…
Текущие рекомендации: https://unionboutiques1.ru/contact-us/
Подробности на странице:…
Подробности на странице: https://archeagewiki.ru/%D0%91%D0%B8%D1%82%D0%B2%D0%B0_%D0%B2_%D0%97%D0…
Introduction: true fortune…
Introduction: true fortune casino is a modern iGaming destination that has steadily won over players across the UK. Operating from its flagship platform at true-fortune.com, the brand markets itself as a full-service home for casino entertainment. Whether you call it truefortune or even true-fortune casino, the overall package caters to players seeking a sleek, trustworthy UK-friendly platform.
When it comes to game collection, this operator delivers a genuinely huge line-up — expect 3,000 to 5,000+ games. Top-tier developers including NetEnt, Microgaming and Yggdrasil power the selection, which means generous return-to-player rates, Megaways mechanics and blockbuster releases. Payouts on many titles routinely stretch to the tens of thousands, which keeps the thrill alive.
The live casino is another strength. Powered by industry leaders like Evolution, UK members can sit down at live roulette, blackjack and baccarat 24/7. Trained hosts stream in HD from purpose-built studios, plus engaging game shows of the game-show variety round out the lobby. It's as immersive as it comes.
When it comes to bonuses, true fortune casino is genuinely competitive. First-timers are greeted with a sign up bonus up to ?500 and 200 free spins, while regulars enjoy a free spins deal for new accounts. Cashback, reload offers and a rewards ladder keep existing players busy, so it's smart to reviewing the wagering requirements first. You can see the current codes at [url=https://true-fortune-casino34.com/free-chips]true fortune casino 50 free chip[/url] for the freshest deals.
On practicalities, true fortune casino supports plenty of payment methods — Visa and Mastercard, Skrill and Neteller, plus crypto options like Bitcoin. Getting started is quick and painless, with a low minimum deposit around ?10, while cashouts are handled fast.
In summary, the true casino rounds things off with always-on customer support, a slick browser and app platform, and solid player-safety measures. For British punters after a trustworthy, feature-rich site, this one is well worth a look.
Introduction: the true…
Introduction: the true casino brand known as true fortune is a well-rounded iGaming destination that has steadily gained a following across the UK. Built around its flagship platform at true-fortune.com, the operator aims to be a one-stop home for casino entertainment. Whether you call it truefortune or even true-fortune casino, the offering is geared toward anyone wanting a clean, reliable GB-oriented environment.
When it comes to game catalogue, true fortune casino serves up an impressively deep line-up — somewhere in the region of over 5,000 games. Leading providers like Pragmatic Play, Big Time Gaming and Betsoft power the catalogue, which means strong RTP percentages, bonus-buy features alongside classic favourites. RTP figures frequently stretch to life-changing sums, which keeps the sessions exciting.
The real-time section is a real strength. Streamed via Evolution and Pragmatic Play Live, players can sit down at authentic dealer tables around the clock. Human croupiers deal in real time from purpose-built studios, plus engaging entertainment titles of the game-show variety round out the lobby. This makes for as immersive as online play gets.
When it comes to bonuses, true fortune casino keeps things generous. First-timers are welcomed by a sign up bonus up to ?1,000 plus 100 free spins, while regulars enjoy a free chip offer to start with. Cashback, reload offers and a rewards ladder reward loyalty, though it's always worth reading the playthrough terms first. You can find out more on [url=https://true-fortune-casino35.com/free-spins]free spins bonus code for true fortune casino[/url] for the freshest deals.
On practicalities, the site handles a broad mix of banking options — debit cards, e-wallets like Neteller, alongside cryptocurrency. Sign-up is refreshingly fast, with a modest entry point near ?20, while cashouts are handled fast.
Overall, the true casino rounds things off with 24/7 help via live chat and email, a smooth mobile experience, and proper licensing and security. For British punters looking for a trustworthy, feature-rich casino, it's well worth a look.
I've been using true fortune…
I've been using true fortune for a good while now, so thought I'd drop a few honest thoughts. As a UK player so I always look at whether GBP and the usual cards worked, and that side of things has been fine.
Where they don't skimp is the games — there's a proper big spread, I'd guess around 2,000 slots and table games if not more. Loads from Pragmatic Play, Play'n GO, Play'n GO, Betsoft and Big Time Gaming all in there. I tend to stick to Gates of Olympus, and a bit of Book of Dead when I'm bored, though the filtering is a bit clunky if I'm honest. If you're into live stuff, Evolution handle the live dealers — actual human dealers, blackjack, roulette and the game shows like Crazy Time if that's your thing.
On the bonus side, the sign-up package was pretty generous — a deposit match plus a chunk of free spins. Just check the wagering first, mine was around 35x which is standard-ish but adds up. Existing players get reload codes as well, so it's worth a see what's live at [url=https://true-fortune-casino7.com/no-deposit-bonus]true fortune casino ndb[/url] rather than taking the first thing you see. You can start with a tenner, about ?10 I think, so no need to commit much to test it.
Cashouts are where they've mostly delivered. Payments-wise I stick to Visa and Skrill, and they take crypto and Bitcoin if you prefer. My e-wallet payouts landed within a day or two, but the card cashout took longer. The one thing that annoyed me — they asked for ID twice which was faffy.
The mobile side is solid — there's no dedicated app, it's browser-based, loads quick on my phone. Live chat has been decent, got a human fairly fast. They're regulated, which put my mind at ease. It's not flawless, but for a casual few spins it does the job.
Pagination
Add new comment