You are here

function _cmf_valid_user in Content Management Filter 7

Same name and namespace in other branches
  1. 6.2 cmf.module \_cmf_valid_user()
13 calls to _cmf_valid_user()
cmf_admin_both_form in ./both.inc
Defines the form for mixed content administration filter results.
cmf_admin_both_form_submit in ./both.inc
Handle post-validation form submission. Execute the chosen 'Update option' on the selected objects, such as publishing, unpublishing or deleting.
cmf_admin_comments_form in ./comment.inc
Defines the form for comments administration filter results.
cmf_admin_comments_form_submit in ./comment.inc
Handle post-validation form submission. Execute the chosen 'Update option' on the selected comments, such as publishing, unpublishing or deleting.
cmf_admin_nodes_form in ./node.inc
Defines the form for nodes administration filter results.

... See full list

File

./cmf.module, line 580
@brief Content management filter module file

Code

function _cmf_valid_user($user) {
  if (!empty($user->uid)) {
    return TRUE;
  }
  else {
    return FALSE;
  }
}