21 lines
542 B
PHP
21 lines
542 B
PHP
<?php
|
|
|
|
require_once(__DIR__ . '/syntax/files.php');
|
|
|
|
/**
|
|
* File Tools plugin compatibility shim.
|
|
*
|
|
* Keep this class so existing code that does `plugin_load('syntax', 'filetools')`
|
|
* continues to work (config/lang access).
|
|
*
|
|
* The actual {{files>...}} syntax implementation lives in syntax/files.php.
|
|
*/
|
|
class syntax_plugin_filetools extends syntax_plugin_filetools_files
|
|
{
|
|
/** @inheritdoc */
|
|
public function connectTo($mode)
|
|
{
|
|
// Intentionally empty: syntax is registered by syntax_plugin_filetools_files.
|
|
}
|
|
}
|