Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
10 | 2 | 2 | 0.995 | statement_sequence[5] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 10 | 39 | components/com_content/views/category/view.feed.php |
2 | 9 | 39 | components/com_content/views/frontpage/view.feed.php |
| ||||
// strip html from feed item title $title= $this->escape($row->title); $title= html_entity_decode($title); // url link to article // & used instead of & as this is converted by feed creator $link= JRoute::_(ContentHelperRoute::getArticleRoute($row->slug ,$row->catslug ,$row->sectionid)); // strip html from feed item description text $description= ($params->get('feed_summary', 0) ? $row->introtext . $row->fulltext : $row->introtext); $author= $row->created_by_alias ? $row->created_by_alias : $row->author; |
| ||||
// strip html from feed item title $title= $this->escape($row->title); $title= html_entity_decode($title); // url link to article $link= JRoute::_(ContentRoute::article($row->slug ,$row->catslug ,$row->sectionid)); // strip html from feed item description text $description= ($params->get('feed_summary', 0) ? $row->introtext . $row->fulltext : $row->introtext); $author= $row->created_by_alias ? $row->created_by_alias : $row->author; |
| |||
// strip html from feed item title $title=$this->escape($row->title); $title=html_entity_decode($title); // url link to article // & used instead of & as this is converted by feed creator $link=JRoute::_( [[#variable48507840]]:: [[#variable485078a0]]($row->slug ,$row->catslug ,$row->sectionid)); // strip html from feed item description text $description=($params->get('feed_summary',0) ? $row->introtext . $row->fulltext : $row->introtext); $author=$row->created_by_alias ? $row->created_by_alias : $row->author; |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#48507840]] | ContentHelperRoute |
1 | 2 | [[#48507840]] | ContentRoute |
2 | 1 | [[#485078a0]] | getArticleRoute |
2 | 2 | [[#485078a0]] | article |