You are here

function nopremium_check_content_extra_field in Node Option Premium 6

Check whether the nopremium message should be managed as a content extra field.

3 calls to nopremium_check_content_extra_field()
nopremium_alter_node in ./nopremium.module
Alter a node replacing full body by nopremium body.
nopremium_content_extra_fields in ./nopremium.module
Implementation of hook_content_extra_fields.
nopremium_nodeapi in ./nopremium.module
Implementation of hook_nodeapi().

File

./nopremium.module, line 331
Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr

Code

function nopremium_check_content_extra_field() {
  return module_exists('content') && variable_get('nopremium_content_extra_field', 0);
}