This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/constants.php

30 lines
907 B
PHP
Raw Normal View History

<?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", "))");