blogapi_update_6001

  1. drupal
    1. drupal6
    2. drupal7
Versionen
drupal6 – drupal7 blogapi_update_6001()

Add blogapi_files table to enable size restriction for BlogAPI file uploads.

This table was introduced in Drupal 6.4.

Verwandte Themen

Code

modules/blogapi/blogapi.install, line 86

<?php
function blogapi_update_6001() {
  $ret = array();

  if (!db_table_exists('blogapi_files')) {
    $schema = blogapi_schema();
    db_create_table($ret, 'blogapi_files', $schema['blogapi_files']);
  }

  return $ret;
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen