Joomla! Discussion Forums



It is currently Tue Nov 24, 2009 12:37 pm (All times are UTC )

 




Post new topic Reply to topic  [ 3 posts ] 
Author Message
Posted: Wed Sep 26, 2007 9:30 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu May 17, 2007 1:24 pm
Posts: 13
Hello,

I'm looking for a way to accomplish this.

I need to create a custom field in the jos_content table (an integer field with 1 or 0 value). Then modify the content manager to add a check box in the add new item page. Similar to the Show on Front Page and Published options. And place it below these options.

For example, let say the custom field is called "Exclusive", do I add the field to the table. Where do I need to modify on the content manager code to add this field?

Let me know if any other information is needed.

Thanks!


Top
  E-mail  
 
Posted: Thu Sep 27, 2007 11:08 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu May 17, 2007 1:24 pm
Posts: 13
Ok, I created the "exclusive" column in the jos_content table. Then I opened the /administrator/components/com_content/admin.content.html.php then modified near line 660 and added this:

Code:
<tr>
    <td valign="top" align="right">
    Exclusive:
    </td>
    <td>
    <input type="checkbox" name="exclusive" value="1" <?php echo $row->exclusive ? 'checked="checked"' : ''; ?> />
    </td>
</tr>

But I don't know where to change in the admin.content.php page to save the value in the table. That's all I need.

Any idea?

Thanks...


Top
  E-mail  
 
Posted: Fri Oct 12, 2007 8:21 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Dec 10, 2005 12:15 pm
Posts: 49
In includes/joomla.php in the class

mosContent extends mosDBTable

Add:

var $exclusive = null;

Then is should work.


Top
   
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

Quick reply

 



Who is online

Users browsing this forum: toivo and 9 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group