Searched refs:code_new (Results 1 – 3 of 3) sorted by relevance
/plugin/pycode/ |
H A D | syntax.php | 626 * @param (arr) $code_new the updated code got from the repository 630 private function _print_note(Doku_Renderer $renderer, $loc_url, $code_new, $sl, $el) { argument 634 $code_new = base64_encode(serialize($code_new)); 641 $renderer->doc .= "<input type='hidden' name='new' value=$code_new>";
|
H A D | action.php | 65 $code_new = unserialize(base64_decode($INPUT->post->str("new"))); 73 array_splice($code_all_old, $ls, $ln, $code_new);
|
H A D | method.php | 399 * @param (arr) $code_new the code got from the <file> hosted in the repo 406 public function _get_code_dif ($code_new, $code_old) { argument 409 $dif = array_intersect_assoc($code_new, $code_old); 411 if (count($dif) < max(count($code_new), count($code_old))) {
|