Best way to dynamically remove curse words on a domain-by-domain basis?

I just started the site GoodF*****gDrupalAdvice.com. I'd like to have a SFW version, such that people can go to GoodDrupalAdvice.com and have all instances of f*****g removed. My initial thought was to do it with locale + translation + domain access, which means I would need to manually create each SFW version of a page. However I'm lazy and I'd prefer to do it automagically. Is there a module, or at least some code I could start with, that allows dynamic filtering of text on a page?

"Add content" and "Find content" not working correctly

When I click on "Add content" shortcut I do not get a list of content types. Initially I got a message stating I had no content types (not true!). After I created a new content type called "Download" clicking on "Add content" takes me directly to a page "Create Download".
When I click on "Find content" I go direct to the "Content" page.
Is this fixable? Your advice would be much appreciated.
Regards,
Kevin.

Single Entity with Multipul Tables

Hi All,

Node row in phpMyAdmin

This is my situation. I created a new drupal instance and linked it up with the database by creating a new database name. Everything show up fine in the database in the phpmyadmin page but none of the nodes are showing up in the node category. My new site has almost 20 nodes or pages but none of them are showing up in the node row. The browse icon is grayed out as well. Any help will be greatly appreciated.

Problems with schemas

Hello, that's my first post!

I'm developing a little module for test, with name ElencoLibri.

I'm realizing the ElencoLibri.install files, to automatically add some tables into my database when the module is installed first time, but i'm having some troubles with drupal_install_schema('ElencoLibri'):

That's my ElencoLibri_schema():

<?php
function ElencoLibri_schema(){
$schema['cliente'] = array(
'description' => 'Tabella dei clienti della biblioteca',
'fields' => array(
'nome' => array(
'description' => 'Il nome del cliente',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE),
'cognome' => array(
'description' => 'Il cognome del cliente',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE),
'idc' => array(
'description' => 'id univoco utente',
'type' => 'serial',
'not null' => TRUE),
'indirizzo' => array(
'description' => 'indirizzo di casa del cliente ',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE),
'tel' => array(
'description' => 'Il numero telefonico del cliente',
'type' => 'varchar',
'not null' => TRUE),
'email' => array(
'description' => 'indirizzo email del cliente',
'type' => 'varchar',

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x