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
Mark Cheret 3321070f7e footnotes WordPress Plugin first alpha release
- Basic functionality is available
- Tested against WordPress 3.9.1

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@917799 b8457f37-d9ea-0310-8a92-e5e31aec5664
2014-05-20 11:23:45 +00:00

30 lines
907 B
PHP
Executable file

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