Lines Matching refs:params_array
53 function orphan_pages($params_array) { argument
57 $result .= $this->orph_report_table($data, true, false, $params_array, 'orphan');
62 function wanted_pages($params_array) { argument
66 $result .= $this->orph_report_table($data, false, true, $params_array, 'wanted');
71 function valid_pages($params_array) { argument
75 $result .= $this->orph_report_table($data, true, true, $params_array, 'valid');
80 function all_pages($params_array) { argument
85 $result .= $this->orph_report_table($data, true, false, $params_array, 'orphan');
87 $result .= $this->orph_report_table($data, false, true, $params_array, 'wanted');
89 $result .= $this->orph_report_table($data, true, true, $params_array, 'valid');
94 function orph_report_table($data, $page_exists, $has_links, $params_array, $caller = null) { argument
105 $include_array = $params_array[1];
106 $exclude_array = $params_array[2];