Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. addfieldpath="/modules/mod_social_slider/fields"
  2.  
  3. <field name="image" type="custom" default="" label="" description="" />
  4.  
  5. <?php
  6.  
  7. defined('_JEXEC') or die('Restricted access');
  8.  
  9. class JFormFieldCustom extends JFormField {
  10.  
  11. protected $type = 'Custom';
  12.  
  13. protected function getInput() {
  14. return '<img src="' . JUri::root() . 'templates/your_template/images/image.jpg" alt="" />';
  15. }
  16.  
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement