3321070f7e
- 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
30 lines
No EOL
907 B
PHP
Executable file
30 lines
No EOL
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", "))"); |