function freelinking_get_conf in Freelinking 6.3
Same name and namespace in other branches
- 7.3 freelinking.utilities.inc \freelinking_get_conf()
Get a configuration value for the current text being processed. Configuration values may vary by format, or fall back to a general default.
This allows the current value to be accessed without bouncing $format into every plugin.
Parameters
$name: Get the setting from those tracked in freelinking_set_conf().
Return value
A string of the value.
See also
1 call to freelinking_get_conf()
- freelinking_prepopulate_node_callback in modules/
freelinking_prepopulate/ freelinking_prepopulate.module - Node Create replacement callback Ultimate default: [[create:pagetitle]] => <a href="node/add/page?edit[title]=pagetitle>pagetitle</a>
File
- ./
freelinking.utilities.inc, line 167 - Freelinking 3 Utilities
Code
function freelinking_get_conf($name) {
return freelinking_set_conf($name);
}