This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php ob_start(); | |
if(! class_exists('PUR_Backup')) { | |
class PUR_Backup { | |
public function __construct () { | |
if ( current_user_can( 'edit_theme_options' ) ) { | |
add_action( 'admin_menu', array(&$this, 'add_page')); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* plugin.js | |
* | |
* Copyright, Moxiecode Systems AB | |
* Released under LGPL License. | |
* | |
* License: http://www.tinymce.com/license | |
* Contributing: http://www.tinymce.com/contributing | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//bold("<br><br>Shuttle Dumper included"); | |
/** | |
* Abstract dump file: provides common interface for writing | |
* data to dump files. | |
*/ | |
abstract class Shuttle_Dump_File { | |
/** | |
* File Handle | |
*/ |
OlderNewer