/usr/share/docvert/sample-use.php is in docvert 4.0-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 | <?php
$appDir = dirname(__FILE__).DIRECTORY_SEPARATOR;
define('DOCVERT_DIR', $appDir);
define('DOCVERT_CLIENT_TYPE', 'web');
include_once(DOCVERT_DIR.'core/webpage.php');
$themes = new Themes;
$themes->drawTheme();
?>
|