google-profanity

filter bad words using Google API
4 followers

Filter bad words using Google Profanity API

Requirements

Yii 1.1 or above

Usage

put the zip file into your extension folder

and in your models

public function rules(){
        return array(
            array('username','ext.profanity.GoogleProfanityValidator',
                'replaceNumbers'=>true, // replace special characters to letters
                'trimLeft'=>true, // trim left character. e.g. 3fuck = fuck
                'trimRight'=>true, // trim right character. e.g fuck3 = fuck
                //'trim'=>'true', // default to false. delete left and right character. e.g 3fuck3 = fuck
                //'trimCharList'=>'0123456789', // char list for trimming, default to 0-9
            ),
        );
    }

Example Profanity

  1. suck1 = suck (if trimRight is true, remove character on right with "trimCharList")

  2. 1suck = suck (if trimLeft is true, remove character on left with "trimCharList")

  3. s3x = sex (if replaceNumbers = true, will replace to s3x = sex)

Resources

Be the first person to leave a comment

Please to leave your comment.

Create extension
Downloads