Edit frontend form
Posted: 09 Aug 2011, 20:04
Hi Jan,
I've added this code to the frontend display (views/user/tmpl/default cat) to enable the picasa feature, the fields are shown in the frontend, but any suggestions how to add this to the db?
Or is it more difficult than I think?
Victor
[code]<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_USER_LABEL');?>:</strong></td>
<td><input type="text" id="categoryextu" name="categoryextu" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryextu'] ;?>" /></td>
</tr>
<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_ALBUM_LABEL');?>:</strong></td>
<td><input type="text" id="categoryexta" name="categoryexta" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryexta'] ;?>" /></td>
</tr>
<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_AUTHKEY_LABEL');?>:</strong></td>
<td><input type="text" id="categoryextauth" name="categoryextauth" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryextauth'] ;?>" /></td>
</tr>
[/code]
I've added this code to the frontend display (views/user/tmpl/default cat) to enable the picasa feature, the fields are shown in the frontend, but any suggestions how to add this to the db?
Or is it more difficult than I think?
Victor
[code]<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_USER_LABEL');?>:</strong></td>
<td><input type="text" id="categoryextu" name="categoryextu" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryextu'] ;?>" /></td>
</tr>
<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_ALBUM_LABEL');?>:</strong></td>
<td><input type="text" id="categoryexta" name="categoryexta" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryexta'] ;?>" /></td>
</tr>
<tr>
<td><strong><?php echo JText::_('COM_PHOCAGALLERY_FIELD_PICASA_AUTHKEY_LABEL');?>:</strong></td>
<td><input type="text" id="categoryextauth" name="categoryextauth" maxlength="255" class="comment-input" value="<?php echo $this->tmpl['categoryextauth'] ;?>" /></td>
</tr>
[/code]