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
| /** | |
| * 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
| <!DOCTYPE html> | |
| <head> | |
| <title>Stay Standalone</title> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
| <script src="stay_standalone.js" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <ul> | |
| <li><a href="http://google.com/">Remote Link (Google)</a></li> |
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 | |
| */ |
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 | |
| /* | |
| UserSpice 4 | |
| An Open Source PHP User Management System | |
| by the UserSpice Team at http://UserSpice.com | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |
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 | |
| /* | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2014 Rob Dunham | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights |
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 | |
| class Autoloader { | |
| static public function loader($className) { | |
| $filename = "Classes/" . str_replace("\\", '/', $className) . ".php"; | |
| if (file_exists($filename)) { | |
| include($filename); | |
| if (class_exists($className)) { | |
| return TRUE; | |
| } | |
| } |
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 | |
| /* | |
| UserSpice 4 | |
| An Open Source PHP User Management System | |
| by the UserSpice Team at http://UserSpice.com | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |