[UPDATE] Nach dem Speichern bleibt die Ansichtsseite leer
Eingetragen von pewiha (30)
am 10.04.2009 - 21:17 Uhr in
am 10.04.2009 - 21:17 Uhr in
Ich habe ein Modul für einen neuen Inhaltstypen geschrieben:
Hier der Code für das Modul:
<?php
/* $Id$ */
/**
* @file
* Dublist Module
*
*
*DB definition
*@code
* CREATE TABLE dublist (
* vid int(10) unsigned NOT NULL default '0',
* nid int(10) unsigned NOT NULL default '0',
* role varchar(255) NOT NULL default '',
* german_speaker varchar(255) NOT NULL default '',
* native_speaker varchar(255) NOT NULL default '',
* note varchar(255) NOT NULL default '',
* PRIMARY KEY (vid, nid),
* KEY `dublist_nid` (nid)
* )
* @endcode
*/
function dublist_node_info() {
return array(
'dublist' => array(
'name' => t('Sprecherliste'),
'module' => 'dublist',
'description' => "This is an example node type with a few fields.",
'has_title' => TRUE,
'title_label' => t('Dublist Title'),
'has_body' => TRUE,
'body_label' => t('Dublist Body'),
)
);
}
function dublist_insert($node) {
db_query("INSERT INTO {dublist} (nid, role, german_speaker, native_speaker, note, role_function) VALUES (%d, '%s', '%s', '%s','%s','%s' )", $node->nid, $node->role, $node->german_speaker, $node->native_speaker, $node->note, $node->role_function);
}
/**
* Implementation of hook_update().
*
* As an existing node is being updated in the database, we need to do our own
* database updates.
*/
function dublist_update($node) {
// if this is a new node or we're adding a new revision,
if ($node->revision) {
dublist_insert($node);
}
else {
db_query("UPDATE {dublist} SET role = '%s', german_speaker = '%s', native_speaker = '%s', note = '%s', role_function = '%s' WHERE nid = %d", $node->role, $node->german_speaker, $node->native_speaker, $node->note, $node->role_function, $node->nid);
}
}
/**
* Implementation of hook_load().
*
* Now that we've defined how to manage the node data in the database, we
* need to tell Drupal how to get the node back out. This hook is called
* every time a node is loaded, and allows us to do some loading of our own.
*/
function dublist_load($node) {
$dublist = db_fetch_object(db_query('SELECT nid, role, german_speaker, native_speaker, note, role_function FROM {dublist} WHERE nid = %d', $node->nid));
return $dublist;
}
/**
*Valid Permissions for this module
*/
function dublist_perm() {
return array('create dublist', 'edit own dublist', 'edit any dublist');
}
function dublist_access($op, $node, $account) {
if ($op == 'create') {
// Only users with permission to do so may create this node type.
return user_access('create dublist', $account);
}
// Users who create a node may edit or delete it later, assuming they have the
// necessary permissions.
if ($op == 'update' || $op == 'delete') {
if (user_access('edit own dublist',$account) && ($account->uid == $node->uid)) {
return TRUE;
}
else if (user_access('edit any dublist',$account) && ($account->uid == $node->uid)) {
return TRUE;
}
}
}
function dublist_form(&$node) {
$type = node_get_types('type', $node);
// We need to define form elements for the node's title and body.
$form['title'] = array(
'#type' => 'textfield',
'#title' => check_plain($type->title_label),
'#required' => TRUE,
'#default_value' => $node->title,
'#weight' => -5
);
// We want the body and filter elements to be adjacent. We could try doing
// this by setting their weights, but another module might add elements to the
// form with the same weights and end up between ours. By putting them into a
// sub-array together, we're able force them to be rendered together.
//$form['body_filter']['body'] = array(
// '#type' => 'textarea',
// '#title' => check_plain($type->body_label),
// '#default_value' => $node->body,
// '#required' => FALSE
//);
//$form['body_filter']['filter'] = filter_form($node->format);
// NOTE in node_example there is some addition code here not needed for this simple node-type
/** if ($type->has_body) {
** $form['body_field'] = node_body_field($node, $type->body_label, $type->min_word_count);
*}
*/
// Now we define the form elements specific to our node type.
$form['role'] = array(
'#type' => 'textfield',
'#title' => t('role'),
'#default_value' => isset($node->role) ? $node->role : '',
);
$form['german_speaker'] = array(
'#type' => 'varchar',
'#title' => t('german speaker'),
'#default_value' => isset($node->german_speaker) ? $node->german_speaker : '',
);
$form['new_speaker'] = array(
'#type' => 'button',
'#value' => t('new speaker'),
);
$form['native_speaker'] = array(
'#type' => 'varchar',
'#title' => t('native speaker'),
'#default_value' => isset($node->native_speaker) ? $node->native_speaker : '',
);
$form['note'] = array(
'#type' => 'textfield',
'#title' => t('note'),
'#default_value' => isset($node->note) ? $node->note : '',
);
$form['role_function'] = array(
'#type' => 'select',
'#title' => t('role function'),
'#options' => array(
'default' => t('-'),
'main role' => t('main role'),
'minor role' => t('minor role'),
'episode role' => t('episode role'),
),
'#description' => t('function of role'),
);
$form['new_role'] = array(
'#type' => 'button',
'#value' => t('new role'),
);
return $form;
}
/**
* Implementation of hook_help().
*/
function dublist_help($path, $arg) {
switch ($path) {
case 'admin/help#dublist':
$output = '<p>Dublist Help</p>';
return $output;
}
?>
Das Schema der DB habe ich ähnlich wie das Poll-Modul mit einer .install Datei implementiert.
<?php
// $Id: dublist.install$
/**
* Implementation of hook_install().
*/
function dublist_install() {
// Create tables.
drupal_install_schema('dublist');
}
/**
* Implementation of hook_uninstall().
*/
function dublist_uninstall() {
// Remove tables.
drupal_uninstall_schema('dublist');
}
/**
* Implementation of hook_schema().
*/
function dublist_schema() {
$schema['dublist'] = array(
'description' => 'Stores dublist-specific information for poll nodes.',
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => "The dublist's {node}.nid."
),
'role' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => "The name of the role."
),
'german_speaker' => array(
'type' => 'select',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => "The name of the role."
),
'native_speaker' => array(
'type' => 'select',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => "The name of the role."
),
'note' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
'description' => "The name of the role."
),
'role_function' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => 0,
'description' => "The function of the role."
),
),
'primary key' => array('nid'),
);
return $schema;
}
?>
- Anmelden oder Registrieren um Kommentare zu schreiben
Installation
am 10.04.2009 - 22:48 Uhr
Moin!
Die Frage klingt vielleicht anfangs etwas blöd, ist jedoch durchaus ernst gemeint: Hast Du das Modul denn richtig installiert?
Wenn die .install bei der ersten Aktivierung des Moduls noch nicht existiert hat, musst Du das Modul komplett deinstallieren (deaktivieren und dann auf "uninstall") und dann wieder installieren.
Erst dann wird der Code in der .install ausgeführt und die Tabelle angelegt.
Lass Dir am Besten in der Funktion
dublist_install()
noch eine Nachricht bei Erfolg ausgeben.hth,
Stefan
Tipp: Beachte die Verhaltensregeln des DrupalCenter.
Hinweise
am 10.04.2009 - 22:53 Uhr
Und gleich noch ein Hinweis zum Modul:
t('Rolle')
ist nicht richtig (gilt auch für die anderen Texte). Richtig istt('Role')
und dann gleich noch die Dateien dublist.pot und de.po in einem Verzeichnis translations.Standardsprache von Drupal ist Englisch. Übersetzungen werden über die entsprechenden .po-Dateien mitgliefert. Extrahieren kannst Du die übersetzbaren Texte mit dem Modul Translation template extractor.
hth,
Stefan
Tipp: Beachte die Verhaltensregeln des DrupalCenter.
Danke
am 11.04.2009 - 10:12 Uhr
Habe deine Tipps beachtet und es entsprechend abgeändert.
Hattest Recht, hatte das deinstallieren vergessen.
Jetzt hänge ich an nem Syntaxfehler rum.
Zudem werden mir nicht alle Übersetzungen angezeigt, obwohl ich alle Einträge, die extrahiert wurden, angelegt hatte.
Neuer Fehler
am 11.04.2009 - 17:56 Uhr
Nun habe ich keine Probleme mehr mit dem Eintrag in die DB, aber wenn ich jetzt nun einen Eintrag dieses Inhaltstypen mache, bleibt nach dem Speichern die Seite leer. Lediglich der Titel dieses Knotens wird angezeigt.
Fehlt mir irgendeine Methode im module, oder habe ich bei einer Methode etwas vergessen?