Hi all,
I want to show, Date Posted, function. in jxshowjob module.
I did Follwing changes, in mod_jxshowjob.php file, & mod_jxshowjob.xml file
Chage in mod_jxshowjob.php file,
| Code: |
// add row name ,
$query = "SELECT id, title, hits, description,created"
// add follwing line
<td width="11"><?php if ( $params->get( 'showcreated') ) { echo "<br />$row->created"; } ?></td>
// add following line in get params definitions
$params->def( 'showcreated', 0 );
|
And in xml file;
| Code: |
<param name="showcreated" type="radio" default="0" label="Date Posted" description="Show the created with each item (default no)">
<option value="0">No</option>
<option value="1">Yes</option>
</param>
|
But it does not showing.. Please help me..
Thanks
Partha
Post edited by: partha06, at: 2007/06/07 22:57
Post edited by: partha06, at: 2007/06/07 22:58<br><br>Post edited by: partha06, at: 2007/06/07 22:59