Plugin Directory

Changeset 803536


Ignore:
Timestamp:
11/13/2013 05:20:47 AM (12 years ago)
Author:
nathanlampe
Message:

v1.0 improved performance and matching

Location:
bleep-filter/trunk
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • bleep-filter/trunk/index.php

    r803535 r803536  
    11<?php
    2 /*
    3 Plugin Name: Bleep Filter
    4 Plugin URI: http://www.filterplugin.com
    5 Description: A better word filter that passively removes unwanted words from your wordpress site by easily capturing common misspellings and deliberate obfuscation
    6 Version: 1.0
    7 Author: Nathan Lampe
    8 Author URI: http://www.nathanlampe.com
    9 License: GPL2
    10 */
    11 
    12 /*  Copyright 2013  Nathan Lampe  (email : nathan@nathanlampe.com)
    13 
    14     This program is free software; you can redistribute it and/or modify
    15     it under the terms of the GNU General Public License, version 2, as
    16     published by the Free Software Foundation.
    17 
    18     This program is distributed in the hope that it will be useful,
    19     but WITHOUT ANY WARRANTY; without even the implied warranty of
    20     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    21     GNU General Public License for more details.
    22 
    23     You should have received a copy of the GNU General Public License
    24     along with this program; if not, write to the Free Software
    25     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    26 */
    27 
    28 class BleepFilter
    29 {
    30     public function __construct(){
    31         require_once('wpadmin.class.php');
    32         $wpadmin = new WPAdmin;
    33         require_once('phoneticbleepfilter.class.php');
    34         $bleep_filter = new PhoneticBleepFilter;
    35     }
    36 }
    37 
    38 $bfp = new BleepFilter;
    39 
     2 #Speech is Silver; Silence is Golden
    403?>
Note: See TracChangeset for help on using the changeset viewer.