'Xml Parser', 'page callback' => 'parser_form', 'access callback' => 'access_function1', ); return $items; } function parser_form() { return ''; } function access_function1() { global $user; if (in_array('administrator', $user->roles)) { return true; } else { return false; } }