Drupal: Unterschied zwischen den Versionen

Aus RaumZeitLabor Wiki
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 75: Zeile 75:
**[http://tinymce.moxiecode.com/index.php TinyMCE]
**[http://tinymce.moxiecode.com/index.php TinyMCE]
**<s>[http://ckeditor.com/ CKEditor]</s>
**<s>[http://ckeditor.com/ CKEditor]</s>
*[http://drupal.org/project/wysiwyg_imageupload WYSIWYG image upload]
*[http://drupal.org/project/wysiwyg_imageupload WYSIWYG image upload] (Neues Repository: [https://github.com/EugenMayer/wysiwyg_imageupload])
**[http://drupal.org/project/jquery_ui_dialog Jquery UI Dialog]
**[http://drupal.org/project/jquery_ui_dialog Jquery UI Dialog] (Neues Repository: [https://github.com/EugenMayer/jquery_ui_dialog])
***[http://drupal.org/project/jquery_ui jQuery UI]
***[http://drupal.org/project/jquery_ui jQuery UI]
****[https://code.google.com/p/jquery-ui/downloads/list?can=3&q=1.7 jquery-ui]
****[https://code.google.com/p/jquery-ui/downloads/list?can=3&q=1.7 jquery-ui]

Version vom 14. April 2012, 14:03 Uhr

     
Drupal

Release status: stable [box doku]

Beschreibung
Besitzer  Inte
Verantwortliche(r)  Inte

Wunschzettel

Optik

Funktionalität

Inhalt

  • Benutzer von Wordpress umziehen hat sich erledigt
  • Texte von Wordpress umziehen done
  • Kommentare von Wordpress umziehen
  • Bilder von Wordpress umziehen

Setup

Datenbanken

Um tiefere Eingriffe in diversen Konfigurationsdateien zu vermeiden sollte der Einfachheit halber der Benutzername und das Passwort der Drupal-, sowie der CiviCRM-Datenbank identisch sein oder nur eine Datenbank benutzt werden. Momentan befinden sich Drupal & CiviCRM-Daten in einer Datenbank.

Pfade

Modulverzeichnis
/sites/all/modules
Themeverzeichnis
/sites/all/themes

Theme

Anpassungen

Module

Core

Nachinstalliert

Anpassungen

Calendar

Für PHP 5.3 wird die aktuelle (>August 2010) Entwicklungversion empfohlen. Leider gibt es in dieser noch Probleme mit dem Import von CiviCRM-Events, weswegen noch mit der letzten stabilen Version (2.2) und PHP-5.3-Patch gearbeitet wird.

Tagadelic

Blendet Schlagwörter im Blog (Pfad: /blog), dessen einzelnen Seiten (Node type: blog) beim Erstellen eines Beitrags (Pfad: /node/add/blog) und allen Taxonomie-Seiten (Tags) in der rechten Seitenleiste ein.

Block
Left sidebar
Show block on specific pages
Show if the following PHP code returns TRUE (PHP-mode, experts only).
<?php
$match = FALSE;
$types = array('blog' => 1);
if (arg(0) == 'node' && is_numeric(arg(1))) {
  $nid = arg(1);
  $node = node_load(array('nid' => $nid));
  $type = $node->type;
  if (isset($types[$type])) {
    $match = TRUE;
  }
}

if (substr($_SERVER["REQUEST_URI"], 0, 10) == '/blog')
{ $match = TRUE;}

if (substr($_SERVER["REQUEST_URI"], 0) == '/node/add/blog')
{ $match = TRUE;}

if (arg(0) == 'taxonomy')
{ $match = TRUE;}

return $match;
?>

Drupal 7

Update Vorbereitungen