Lines Matching full:input
19 $input = array(
24 $response = $request->post($input);
42 $pattern .= '<input type="hidden" name="hid" value="';
49 …$result = preg_match_all('/<input type="hidden" name="([^"]*)" value="([^"]*)" \/>/', $formA[0], $…
50 $input = array();
52 $input[$match[1]] = $match[2];
54 $this->assertEquals($input['hid'], $idA[1]);
56 // Post the input fields (= do a section edit)
57 $response = $request->post($input, '/doku.php');
61 // form as an hidden input field
64 $pattern .= '<input type="hidden" name="hid" value="';
71 …$result = preg_match_all('/<input type="hidden" name="([^"]*)" value="([^"]*)" \/>/', $editForm[0]…
72 $input = array();
74 $input[$match[1]] = $match[2];
76 $this->assertEquals($input['hid'], $idA[1]);
77 $input['do'] = 'save';
79 // Post the input fields (= save page)
80 $response = $request->post($input, '/doku.php');
102 $input = array(
107 $response = $request->post($input);
125 $pattern .= '<input type="hidden" name="hid" value="';
132 …$result = preg_match_all('/<input type="hidden" name="([^"]*)" value="([^"]*)" \/>/', $formB[0], $…
133 $input = array();
135 $input[$match[1]] = $match[2];
137 $this->assertEquals($input['hid'], $idB[1]);
139 // Post the input fields (= do a section edit)
140 $response = $request->post($input, '/doku.php');
144 // form as an hidden input field
147 $pattern .= '<input type="hidden" name="hid" value="';
154 …$result = preg_match_all('/<input type="hidden" name="([^"]*)" value="([^"]*)" \/>/', $editForm[0]…
155 $input = array();
157 $input[$match[1]] = $match[2];
159 $this->assertEquals($input['hid'], $idB[1]);
160 $input['do'] = 'save';
162 // Post the input fields (= save page)
163 $response = $request->post($input, '/doku.php');