This file contains 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 | |
/** | |
* //jt 26.05.21: WP core function 'remove_meta_box()' sets $metabox = false. Adjusted for compatibility with PHP 7.4. | |
*/ | |
include 'tabs.php'; | |
class Tabify_Edit_Screen_Edit_Screen { | |
private $tab_location = 'default'; | |
private $all_metaboxes = array(); |
This file contains 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 | |
/* | |
Plugin Name: Linkable Title Html and Php Widget by PepLamb | |
Plugin URI: http://peplamb.com/linkable-title-html-and-php-widget/ | |
Description: JT 14.10.2019: Modified to implement new object constructor method __construct() | JT 26.05.2020: Modified for some PHP notices || <a href="http://peplamb.com/linkable-title-html-and-php-widget/" target="_blank">Linkable Title Html and Php Widget</a> by <a href="http://peplamb.com/linkable-title-html-and-php-widget/" target="_blank">PepLamb</a>! Using this plugin you may have Text, HTML, Javascript, Flash and/or Php as content in this widget with linkable widget titles, so this is a plus compared to the default wordpress' text widget. This plugin is a personal open source project. Started in 2009, I have put considerable amount of hours adding, refining, tuning, fixing, maintaining the plugin with the goal to make it useful and add to Wordpress community. I need your help to achieve this. <a href='https://pledgie.com/campaigns/23211' target="_blank">Donate</a> | |
Ver |
This file contains 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 | |
/** | |
* Creates and removes redirects for a post slug | |
* | |
* Creates and removes entries in the redirect list of plugin 'Redirection'. | |
* | |
* @link https://gist.github.com/jotazzu | |
* @since 1.0.1 | |
* |
This file contains 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 | |
/** | |
* //JT 13.12.19: create_function() is deprecated. | |
*/ | |
include 'tabs.php'; | |
class Tabify_Edit_Screen_Edit_Screen { |
This file contains 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 | |
//jt: with fix from Midlife Riding (https://wordpress.org/support/topic/redefining-already-defined-constructor-for-class-wpsh_plugin#post-5930194 | |
class wpsh_boot_loader { | |
function __construct() { | |
$this->pure_init = !function_exists('add_action'); | |
$this->memory_limit = (int) $this->convert_ini_bytes(@ini_get('memory_limit')); | |
//if no limit is available set it to 1GB to be sure at divisions ;-) | |
if($this->memory_limit == 0) $this->memory_limit = 1024*1024*1024; | |
$this->mem_usage_possible = function_exists('memory_get_usage'); |
This file contains 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 | |
/* | |
Plugin Name: Active Directory Integration (modified for SSO) | |
Version: 1.1.5.1.jt-1 | |
Plugin URI: http://www.steindorff.de/wp-ad-integration | |
Description: Allows WordPress to authenticate, authorize, create and update users through Active Directory | |
Author: Christoph Steindorff | |
Author URI: http://www.steindorff.de/ |
This file contains 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 /* | |
Plugin Name: Dynamic Image Resizer | |
Plugin URI: http://ottopress.com | |
Author: Otto42 / Modified by JochenT | |
Author URI: http://ottodestruct.com | |
Version: 1.0.0.1.jt-3 (11.10.2013) | |
Description: Change the WordPress image uploader system to do image resizing on the fly. | |
*/ | |
/* |