Drupal 7 Installationsprofil: wie finde ich z.B. variable_set('...', '..'); Möglichkeiten heraus?
am 23.06.2011 - 15:03 Uhr in
Hallo Zusammen,
da ich immer wieder einfacherere Drupalinstanzen aufsetze und am Anfang immer mehrere Stunden mit den selben Einstellungsarbeiten verbringe möchte ich mir endlich mal eine eigenes Installationsprofil anlegen. Im Standardinstallationsprofil (das ich als Vorlage nutze) findet man ja schon einiges. Aber wie finde ich raus das ich eine bestimmte Einstellung per variable_set('', '1'); setzen kann? Ich würde zum Beispiel gerne standardmäßig full_html als input format einstellen.
Außerdem möchte ich einen neue "Content Manager" Nutzerrolle anlegen. Ist es immer noch richtig die direkt in die DB zu schreiben? Also so:
<?php
db_query("INSERT INTO {role} (rid, name) VALUES (3, 'Content Manager')");
db_query("INSERT INTO {permission} (rid, perm, tid) VALUES (3, 'access comments', 'create files, edit own files, access content, create url aliases, notify of path changes, upload files, view uploaded files, access user profiles, translate content, access contextual links, access dashboard, administer content translations, use text format full_html, administer menu, bypass node access, administer nodes, access content overview, access content, view own unpublished content, view revisions, revert revisions, delete revisions, create page content, edit own page content, edit any page content, delete own page content, delete any page content, create webform content, edit own webform content, edit any webform content, delete own webform content, delete any webform content, search content, use advanced search, access toolbar, access all webform results, access own webform results, access own webform submissions, edit own webform submissions, delete own webform submissions', 0)");
?>
Kennt jemand ein gutes tutorial oder kann es mir an einem Beipiel zeigen?
- Anmelden oder Registrieren um Kommentare zu schreiben
hallo nils zu deiner 1. frage
am 25.06.2011 - 16:08 Uhr
hallo nils
zu deiner 1. frage : das ist ja eine sache des themes (standart fullscreen..?)
in drupal 7 gibt es die
theme-settings.php (in deinem theme
dort kannst du eben solche werte speichern/ einstellen...
bsp:
function deinTheme_form_system_theme_settings_alter(&$form, &$form_state) {
// Create the form using Forms API: http://api.drupal.org/api/7
$form['deinTheme_example'] = array(
'#type' => 'checkbox',
'#title' => t('deinTheme sample setting'),
'#default_value' => theme_get_setting('deinTheme_example'),
'#description' => t("This option doesn't do anything; it's just an example."),
);
// Remove some of the base theme's settings.
unset($form['themedev']['zen_layout']); // We don't need to select the layout stylesheet.
// We are editing the $form in place, so we don't need to return anything.
}
schon hast du in der Datenbank einen Wert den du abgespeichert hast und abfragen kannst
zu deiner 2. frage:
schau dir mal das module features an
http://drupal.org/project/features
damit kannst du einmal gemachte Einstellungen in andere
drupal installationen importieren