30 lines
907 B
PHP
30 lines
907 B
PHP
|
<?php
|
||
|
/**
|
||
|
* User: she
|
||
|
* Date: 30.04.14
|
||
|
* Time: 11:02
|
||
|
*/
|
||
|
|
||
|
/* plugin internal name */
|
||
|
define("FOOTNOTES_PLUGIN_NAME", "footnotes");
|
||
|
|
||
|
/* plugin direcotry name */
|
||
|
define("FOOTNOTES_PLUGIN_DIR_NAME", "footnotes");
|
||
|
|
||
|
/* page settings id */
|
||
|
define("FOOTNOTES_SETTINGS_PAGE_ID", "Footnotes");
|
||
|
|
||
|
define("FOOTNOTES_PLACEHOLDER", "((***))");
|
||
|
|
||
|
/* database container where all footnote settings are stored */
|
||
|
define("FOOTNOTE_SETTINGS_CONTAINER", "footnote_options");
|
||
|
|
||
|
/* id of input field for the combine identical setting */
|
||
|
define("FOOTNOTE_INPUT_COMBINE_IDENTICAL_NAME", "footnote_input_combine_identical_id");
|
||
|
|
||
|
/* id of input field for the references label setting */
|
||
|
define("FOOTNOTE_INPUT_REFERENCES_NAME", "footnote_input_references_id");
|
||
|
|
||
|
/* defines the start and end tag for the placeholder */
|
||
|
define("FOOTNOTE_PLACEHOLDER_START", "((");
|
||
|
define("FOOTNOTE_PLACEHOLDER_END", "))");
|