Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
54 | 6 | 6 | 0.988 | php_sequence[18] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 54 | 1 | installation/views/complete/tmpl/default.php |
2 | 54 | 1 | installation/views/database/tmpl/default.php |
3 | 54 | 1 | installation/views/filesystem/tmpl/default.php |
4 | 54 | 1 | installation/views/language/tmpl/default.php |
5 | 54 | 1 | installation/views/license/tmpl/default.php |
6 | 54 | 1 | installation/views/preinstall/tmpl/default.php |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-off"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-off"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-off"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-off"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-off"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-on"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-off"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-off"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-off"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-on"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-off"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-off"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-off"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-off"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-off"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-off"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-on"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-off"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-on"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-off"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-off"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-off"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-off"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-off"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-off"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-off"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-on"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-off"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-off"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-off"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| ||||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?></h1> <div class="step-off"> 1 : <?php echo JText::_('Language'); ?> </div> <div class="step-on"> 2 : <?php echo JText::_('Pre-Installation check'); ?> </div> <div class="step-off"> 3 : <?php echo JText::_('License'); ?> </div> <div class="step-off"> 4 : <?php echo JText::_('Database'); ?> </div> <div class="step-off"> 5 : <?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> </div> <div class="step-off"> 7 : <?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
| |||
<?php /** * @version $Id: default.php 12295 2009-06-22 11:10:18Z eddieajau $ * @package Joomla.Installation * @copyright Copyright (C) 2005 - 2009 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined( "_JEXEC") or exit; // Include the component HTML helpers. JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); // Load the JavaScript behaviors. JHtml::_('behavior.tooltip'); JHtml::_('behavior.formvalidation'); ?> <script language="JavaScript" type="text/javascript"> <!-- function validateForm(frm, task) { Joomla.submitform(task); } // --> </script> <div id="stepbar"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <h1><?php echo JText::_('Steps'); ?> [[#variable53dc8a20]]<?php echo JText::_('Language'); ?> [[#variable53dc89c0]]<?php echo JText::_('Pre-Installation check'); ?> [[#variable53dc8940]]<?php echo JText::_('License'); ?> [[#variable53dc8800]]<?php echo JText::_('Database'); ?> [[#variable53dc8860]]<?php echo JText::_('FTP Configuration'); ?> </div> <div class="step-off"> 6 : <?php echo JText::_('Configuration'); ?> [[#variable53dc8820]]<?php echo JText::_('Finish'); ?> </div> <div class="box"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <form action="index.php" method="post" name="adminForm" class="form-validate"> <div id="right"> <div id="rightpad"> <div id="step"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <div class="far-right"> |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#53dc8a20]] | </h1> <div class="step-off"> 1 : |
1 | 2 | [[#53dc8a20]] | </h1> <div class="step-off"> 1 : |
1 | 3 | [[#53dc8a20]] | </h1> <div class="step-on"> 1 : |
1 | 4 | [[#53dc8a20]] | </h1> <div class="step-off"> 1 : |
1 | 5 | [[#53dc8a20]] | </h1> <div class="step-off"> 1 : |
1 | 6 | [[#53dc8a20]] | </h1> <div class="step-off"> 1 : |
2 | 1 | [[#53dc89c0]] | </div> <div class="step-on"> 2 : |
2 | 2 | [[#53dc89c0]] | </div> <div class="step-off"> 2 : |
2 | 3 | [[#53dc89c0]] | </div> <div class="step-off"> 2 : |
2 | 4 | [[#53dc89c0]] | </div> <div class="step-off"> 2 : |
2 | 5 | [[#53dc89c0]] | </div> <div class="step-off"> 2 : |
2 | 6 | [[#53dc89c0]] | </div> <div class="step-off"> 2 : |
3 | 1 | [[#53dc8940]] | </div> <div class="step-off"> 3 : |
3 | 2 | [[#53dc8940]] | </div> <div class="step-on"> 3 : |
3 | 3 | [[#53dc8940]] | </div> <div class="step-off"> 3 : |
3 | 4 | [[#53dc8940]] | </div> <div class="step-off"> 3 : |
3 | 5 | [[#53dc8940]] | </div> <div class="step-off"> 3 : |
3 | 6 | [[#53dc8940]] | </div> <div class="step-off"> 3 : |
4 | 1 | [[#53dc8800]] | </div> <div class="step-off"> 4 : |
4 | 2 | [[#53dc8800]] | </div> <div class="step-off"> 4 : |
4 | 3 | [[#53dc8800]] | </div> <div class="step-off"> 4 : |
4 | 4 | [[#53dc8800]] | </div> <div class="step-off"> 4 : |
4 | 5 | [[#53dc8800]] | </div> <div class="step-on"> 4 : |
4 | 6 | [[#53dc8800]] | </div> <div class="step-off"> 4 : |
5 | 1 | [[#53dc8860]] | </div> <div class="step-off"> 5 : |
5 | 2 | [[#53dc8860]] | </div> <div class="step-off"> 5 : |
5 | 3 | [[#53dc8860]] | </div> <div class="step-off"> 5 : |
5 | 4 | [[#53dc8860]] | </div> <div class="step-on"> 5 : |
5 | 5 | [[#53dc8860]] | </div> <div class="step-off"> 5 : |
5 | 6 | [[#53dc8860]] | </div> <div class="step-off"> 5 : |
6 | 1 | [[#53dc8820]] | </div> <div class="step-off"> 7 : |
6 | 2 | [[#53dc8820]] | </div> <div class="step-off"> 7 : |
6 | 3 | [[#53dc8820]] | </div> <div class="step-off"> 7 : |
6 | 4 | [[#53dc8820]] | </div> <div class="step-off"> 7 : |
6 | 5 | [[#53dc8820]] | </div> <div class="step-off"> 7 : |
6 | 6 | [[#53dc8820]] | </div> <div class="step-on"> 7 : |