/**
* Plugin Name: Boingnet LivePage
* Plugin URI: http://www.boingnet.com
* Version: 1.0
* Author: Boingner
* Author URI: http://www.boingnet.com
* Description: A plugin to add a custom button to the the Visual Editor for inserting variable data and logic
* License: GPL2
*/
class Boingnet_Livepage {
/**
* Constructor. Called when the plugin is initialised.
*/
function __construct() {
if ( is_admin() ) {
add_action( 'init', array( $this, 'setup_tinymce_plugin' ) );
}
}
/**
* Check if the current user can edit Posts or Pages, and is using the Visual Editor
* If so, add some filters so we can register our plugin
*/
function setup_tinymce_plugin() {
// Check if the logged in WordPress User can edit Posts or Pages
// If not, don't register our TinyMCE plugin
if ( ! current_user_can( 'edit_posts' ) && ! current_user_can( 'edit_pages' ) ) {
return;
}
// Check if the logged in WordPress User has the Visual Editor enabled
// If not, don't register our TinyMCE plugin
if ( get_user_option( 'rich_editing' ) !== 'true' ) {
return;
}
// Setup some filters
add_filter( 'mce_external_plugins', array( &$this, 'add_tinymce_plugin' ) );
add_filter( 'mce_buttons', array( &$this, 'add_tinymce_toolbar_button' ) );
}
/**
* Adds a TinyMCE plugin compatible JS file to the TinyMCE / Visual Editor instance
*
* @param array $plugin_array Array of registered TinyMCE Plugins
* @return array Modified array of registered TinyMCE Plugins
*/
function add_tinymce_plugin( $plugin_array ) {
$plugin_array['boingnet_livepage'] = plugin_dir_url( __FILE__ ) . 'boingnet-livepage.js';
return $plugin_array;
}
/**
* Adds a button to the TinyMCE / Visual Editor which the user can click
* to insert a link with a custom CSS class.
*
* @param array $buttons Array of registered TinyMCE Buttons
* @return array Modified array of registered TinyMCE Buttons
*/
function add_tinymce_toolbar_button( $buttons ) {
array_push( $buttons, '|', 'boingnet_livepage' );
return $buttons;
}
}
$boingnet_livepage = new Boingnet_LivePage;
?>
No Attorney's Fees Down Bankruptcy | Walker & Walker Law Offices, PLLC
Pay only the court’s filing fee and credit counseling ($350) up front!
Only $89 per month payment towards attorney’s fees after filing!
Requires someone you know to guarantee W&W’s fees.
Guarantor is NOT filing bankruptcy, nothing goes on their credit report.
We don’t pull their credit so it doesn’t affect their credit score.
Gets your case filed sooner so negative credit reporting stops sooner!
Either the client or the guarantor can pay it
Why Does Someone Else Have To Be Involved?
Because bankruptcy discharges all debts, including any unpaid attorney’s fees for the bankruptcy. Congress wanted to make it hard for people to file bankruptcy, so they made the lawyer fees dischargeable upon filing. A guarantor is our way of filing when you need it, without getting all of the fees first.