getRelationshipList(); foreach($relList as $relName) { $relObject = $depRels->get($relName); $def = $relObject->getDefinition(); //We only need to fix self referencing one to many relationships if ($def['lhs_module'] == $def['rhs_module'] && $def['is_custom'] && $def['relationship_type'] == "one-to-many") { $layout_defs = array(); if (!is_dir("custom/Extension/modules/$module/Ext/Layoutdefs") || !is_dir("custom/Extension/modules/$module/Ext/Vardefs")) continue; //Find the extension file containing the vardefs for this relationship foreach(scandir("custom/Extension/modules/$module/Ext/Vardefs") as $file) { if (substr($file,0,1) != "." && strtolower(substr($file, -4)) == ".php") { $dictionary = array($module => array("fields" => array())); $filePath = "custom/Extension/modules/$module/Ext/Vardefs/$file"; include($filePath); if(isset($dictionary[$module]["fields"][$relName])) { $rhsDef = $dictionary[$module]["fields"][$relName]; //Update the vardef for the left side link field if (!isset($rhsDef['side']) || $rhsDef['side'] != 'left') { $rhsDef['side'] = 'left'; $fileContents = file_get_contents($filePath); $out = preg_replace( '/\$dictionary[\w"\'\[\]]*?' . $relName . '["\'\[\]]*?\s*?=\s*?array\s*?\(.*?\);/s', '$dictionary["' . $module . '"]["fields"]["' . $relName . '"]=' . var_export_helper($rhsDef) . ";", $fileContents ); file_put_contents($filePath, $out); } } } } //Find the extension file containing the subpanel definition for this relationship foreach(scandir("custom/Extension/modules/$module/Ext/Layoutdefs") as $file) { if (substr($file,0,1) != "." && strtolower(substr($file, -4)) == ".php") { $layout_defs = array($module => array("subpanel_setup" => array())); $filePath = "custom/Extension/modules/$module/Ext/Layoutdefs/$file"; include($filePath); foreach($layout_defs[$module]["subpanel_setup"] as $key => $subDef) { if ($layout_defs[$module]["subpanel_setup"][$key]['get_subpanel_data'] == $relName) { $fileContents = file_get_contents($filePath); $out = preg_replace( '/[\'"]get_subpanel_data[\'"]\s*=>\s*[\'"]' . $relName . '[\'"],/s', "'get_subpanel_data' => '{$def["join_key_lhs"]}',", $fileContents ); file_put_contents($filePath, $out); } } } } } } } } if (isset($_REQUEST['execute']) && $_REQUEST['execute']) upgrade_custom_relationships();