diff --git a/ctools.module b/ctools.module
index 62f2919..7620ee4 100644
--- a/ctools.module
+++ b/ctools.module
@@ -903,13 +903,15 @@ function ctools_process(&$variables, $hook) {
  */
 
 function ctools_access_menu($access) {
+  $args = func_get_args();
+
   // Short circuit everything if there are no access tests.
   if (empty($access['plugins'])) {
     return TRUE;
   }
 
   $contexts = array();
-  foreach (func_get_args() as $arg) {
+  foreach ($args as $arg) {
     if (is_object($arg) && get_class($arg) == 'ctools_context') {
       $contexts[$arg->id] = $arg;
     }
diff --git a/plugins/access/node.inc b/plugins/access/node.inc
index e69de29..07d5000 100644
--- a/plugins/access/node.inc
+++ b/plugins/access/node.inc
@@ -0,0 +1,6 @@
+<?php
+
+/**
+ * @file
+ * Plugin to provide access control based on node.
+ */
diff --git a/views_content/views_content.admin.inc b/views_content/views_content.admin.inc
index e69de29..589cf42 100644
--- a/views_content/views_content.admin.inc
+++ b/views_content/views_content.admin.inc
@@ -0,0 +1,6 @@
+<?php
+
+/**
+ * @file
+ * File for admin helper functions for views_content module.
+ */
