Extra Module for v3 by immu

Info: Extra module which was installed on almost like every DDL site so taught, to make it work on v3.

ScreenShots:










Install:

Open Index.php

Find:
PHP Code: 
<td>Views</td
Replace
PHP Code: 
<td>Extra</td><td>Views

Find:
PHP Code: 
<td><?php echo $row->views?></td>
Before Add:

PHP Code: 
<td class="extra">
<?php 
                
if($row->type == "Movie") { 
                echo 
'<a  href="http://www.imdb.com/find?s=all&q='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/imdb.png" height=16"  width="16" border="0" alt="'.$row->title.'" title="View Info about  '.$row->title.' "/></a>'; } 
                elseif(
$row->type == "TV") { 
                echo 
'<a  href="http://tvdb.com/search/'.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/tv.png"  alt="'.$row->title.'" title="View Info about '.$row->title.'  "/></a>'; } 
                elseif (
$row->type == "Game") { 
                echo 
'<a  href="gamespot.com/search.html?qs='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images//games.png"  alt="'.$row->title.'" title="Search in Google '.$row->title.'  "/></a>'; }
                else { 
                echo 
'<a  href="http://google.com/?q='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/google.png"  alt="'.$row->title.'" title="Search in Google '.$row->title.'  "/></a>'; }
            
?>
</td>


NOTE: change image path


Upload these Images in Images Folder




Open Style.css

PHP Code: 


.extra
{
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
.
extra:hover
{
opacity:1.0;
filter:alpha(opacity=100); /* For IE8 and earlier */