Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
14 | 2 | 2 | 0.989 | php_sequence[4] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 1 | plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_standalone.js.php |
2 | 14 | 1 | plugins/editors/tinymce/jscripts/tiny_mce/plugins/tinybrowser/tb_tinymce.js.php |
| ||||
<?php require_once ("config_tinybrowser.php"); $tbpath= pathinfo($_SERVER['SCRIPT_NAME']); $tbmain= $tbpath['dirname'] . '/tinybrowser.php'; ?> function tinyBrowserPopUp(type,formelementid,folder) { tburl = "<?php echo $tbmain; ?>" + "?type=" + type + "&feid=" + formelementid; if (folder !== undefined) tburl += "&folder="+folder+"%2F"; newwindow=window.open(tburl,'tinybrowser','height= |
| ||||
<?php require_once ("config_tinybrowser.php"); $tbpath= pathinfo($_SERVER['SCRIPT_NAME']); $tbmain= $tbpath['dirname'] . '/tinybrowser.php'; ?> function tinyBrowser (field_name, url, type, win) { /* If you work with sessions in PHP and your client doesn't accept cookies you might need to carry the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5"). These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */ var cmsURL = "<?php echo $tbmain; ?>"; // script URL - use an absolute path! if (cmsURL.indexOf("?") <0) { //add the type as the only query parameter cmsURL = cmsURL + "?type=" + type; } else { //add the type as an additional query parameter // (PHP session ID is now included if there is one at all) cmsURL = cmsURL + "&type=" + type; } tinyMCE.activeEditor.windowManager.open({ file : cmsURL, title : 'Tiny Browser', width : |
| |||
<?php require_once ("config_tinybrowser.php"); $tbpath=pathinfo($_SERVER['SCRIPT_NAME']); $tbmain=$tbpath['dirname'] . '/tinybrowser.php'; ?> [[#variable21197020]]<?php echo $tbmain; ?> [[#variable22df4620]] |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#21197020]] | function tinyBrowser (field_name, url, type, win) { /* If you work with sessions in PHP and your client doesn't accept cookies you might need to carry the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5"). These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */ var cmsURL = " |
1 | 2 | [[#21197020]] | function tinyBrowserPopUp(type,formelementid,folder) { tburl = " |
2 | 1 | [[#22df4620]] | "; // script URL - use an absolute path! if (cmsURL.indexOf("?") <0) { //add the type as the only query parameter cmsURL = cmsURL + "?type=" + type; } else { //add the type as an additional query parameter // (PHP session ID is now included if there is one at all) cmsURL = cmsURL + "&type=" + type; } tinyMCE.activeEditor.windowManager.open({ file : cmsURL, title : 'Tiny Browser', width : |
2 | 2 | [[#22df4620]] | " + "?type=" + type + "&feid=" + formelementid; if (folder !== undefined) tburl += "&folder="+folder+"%2F"; newwindow=window.open(tburl,'tinybrowser','height= |