# code-block-pro/1.13.0/php/compatibility.php

Code Block Pro – Beautiful Syntax Highlighting, version 1.13.0. 34 lines.

- Page: https://pluginprobe.com/plugins/code-block-pro/1.13.0/code/php/compatibility.php
- Raw: https://pluginprobe.com/plugins/code-block-pro/1.13.0/raw/php/compatibility.php
- Modified: 2022-11-22T21:44:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-block-pro/1.13.0/code/php/compatibility.php#L10-L20`.

```php
<?php

defined('ABSPATH') or die;

/**
 * Prismatic override - https://wordpress.org/plugins/prismatic/
 * This plugin encodes all <code> tags in the content, resulting in escaped html.
 * https://plugins.trac.wordpress.org/browser/prismatic/trunk/inc/prismatic-core.php#L59
 * Will monitor that plugin periodically and remove this override if it is updated.
 */
if (!class_exists('Prismatic')) {
    class Prismatic
    {
        public static function options_general()
        {
        }
        public static function options_advanced()
        {
        }
        public static function options_prism()
        {
        }
        public static function options_highlight()
        {
        }
        public static function options_plain()
        {
        }
    }
    function prismatic()
    {
    }
}

```
