Beispiel Module in Drupal 7 erstellen?

Hey Leute,

ich bin dabei eine Drupal 7 Webseite zu erstellen. Ich möchte ein einfaches Module erstellen, wie muss ich vorgehen? Kann einer mir ein Beispiel Module zeigen?

Danke euch!

Neuen Kommentar schreiben

CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
Profile picture for user Guest
Permanenter Link

Für eigene Blöcke braucht man ein eigenes Modul. Es geht einfach. man braucht ein Ordner unter sites/all/modules. Und in diesem Ordner nochmal zwei Datein mit gleiche Name wie Ordner:

Ordner:
sites/all/modules/itlantik_modblocks1

Darunter 2 Files:
- itlantik_modblocks1.info
- itlantik_modblocks1.module

Inhalt von itlantik_modblocks1.info

name = "Meine Itlantik Module 1" description = "Beschreibung von Module" core = "7.x" package = "Custom Modules"

Inhalt von itlantik_modblocks1.module

/**
* Implements hook_block_info().
*/
function itlantik_modblocks1_block_info() {
$blocks['itlantik_news_side2'] = array(
'info' => t('Meine news Block für Rechte Seite'), //The name that will appear in the block list.
'cache' => DRUPAL_NO_CACHE, // or DRUPAL_CACHE_PER_ROLE, //Default
);

$blocks['itlantik_news_top'] = array(
'info' => t('Meine news Block für Header Leiste'), //The name that will appear in the block list.
'cache' => DRUPAL_NO_CACHE, // DRUPAL_CACHE_PER_ROLE, //Default
);

return $blocks;
}

function itlantik_modblocks1_block_view($delta = '') {
switch($delta){
case 'itlantik_news_side2':
$block['subject'] = t('Meine news Block für Rechte Seite');

//Retrieve and process data here.
$block['content'] = get_news_side2();
break;

case 'itlantik_news_top':
$block['subject'] = t('Meine news Block für Header Leiste');

//Retrieve and process data here.
$block['content'] = get_news_top();
break;
}

return $block;
}

function get_news_top(){

return "Content of top news";
}

function get_news_side2(){

return "Content of right news";
}

?>

Profile picture for user Guest
Permanenter Link

Kann man auch erweitere Module mit gleichem Prinzip entwickeln? Ich muss was komplexeres entwickeln und weiß leider nicht wo ich anfangen soll. Gibt es Dokumentation auf Deutsch wie man Module für Drupal 7 entwickelt?

Profile picture for user Guest
Permanenter Link

Danke für den Code! Ich hab diesen nun bei mir wie angegeben installiert.
Nun habe ich leider eine etwas dumme Frage, wo ich nicht mehr weiterkomme: wie kann ich den Block nun innerhalb von Drupal nutzen? Im Andminbereich unter "Modul" habe ich das Modul gefunden. Aber wie nutze ich es jetzt im Content. Muss ich etwas in den Views hinzufügen oder in der Rubrik Blocks?
Sorry, ich bin noch Anfänger.

Suche

Neueste Kommentare

  • 1 month ago
    [preflight] The following restricted PHP modes have non-empty values: {open_basedir}. This configuration is incompatible with drush.

    Same with Drush 13 + PHP 8.3

  • 1 month ago
    Acronis CyberProtect Agent For Linux (Strato Root Server)

    Initializing...

    Error : Failed to install the required package 'RPM' by using APT. Please install it manually. 

    Exit


    Solution:

  • 1 month ago
    Acronis CyberProtect Agent For Linux (Strato Root Server)

    So habe es installiert und dann mit Hilfe von Key/Code (über Website von Acronis Cyber Protect) aktiviert:

  • 1 month ago
    No route found for the specified format html. Supported formats: csv, json. (Drupal Routing)

    I have a view with a path like /my-content-export to export entivies as JSON or CSV.

  • 1 month 1 week ago
    InvalidArgumentException: The controller for URI "/admin/flush" is not callable.

    admin_toolbar 3.5.2 is the reason. Patch coming ...

  • 10 hours 56 minutes ago
    PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock

    Drupal 10.4:

  • 2 months 1 week ago
    Server install & config : Debian 12 + Plesk + Apache + nginx + MariaDB + Solr

    Tools & Settings >> Security Policy :

     Allow only secure FTPS connections 

  • 3 months 3 weeks ago
    MariaDB Server Performance Optimieren

     

    /usr/sbin/mariadbd --help --verbose | grep "query.*size"
  • 3 months 3 weeks ago
    MariaDB Server Performance Optimieren

    Commandline:

    systemctl restart mariadb
  • 3 months 3 weeks ago
    MariaDB Server Performance Optimieren

    After my changes in /etc/mysql/db-performance.cnf