build your own custom field
play

BUILD YOUR OWN custom field Joomladay NL 2018 #jd18nl I AM EliSa - PowerPoint PPT Presentation

BUILD YOUR OWN custom field Joomladay NL 2018 #jd18nl I AM EliSa Twitter: @elisasophia HOW CAN I CONTROL THE OUTPUT? 1. CREATE AN OVERRIDE OF A VIEW OR LAYOUT 2. CREATE AN OVERRIDE OF A FIELDS PLUGIN 3. MEDIA OVERRIDES 4.


  1. BUILD YOUR OWN custom field Joomladay NL 2018 #jd18nl

  2. I AM EliSa Twitter: @elisasophia

  3. HOW CAN I CONTROL THE OUTPUT? 1. CREATE AN OVERRIDE OF A VIEW OR LAYOUT 
 2. CREATE AN OVERRIDE 
 OF A FIELDS PLUGIN 
 3. MEDIA OVERRIDES 
 4. CREATE AN OWN CUSTOM FIELD PLUGIN

  4. EXAMPLE: VIEW OVERRIDE / ALTERNATE LAYOUT USE THE FIELD VALUE IN YOUR OVERRIDE TO CHANGE THE OUTPUT ON YOUR PAGE � protostar � html � com_content � article � default.php <?php echo $this->data->jcfields[21]->value; ?> If you map the fields to the field-alias you can use something like that: <?php echo $customFields[‘myfield']->value; ?>

  5. // call the user object $user = JFactory::getUser($this->item->created_by); JEventDispatcher::getInstance()->trigger('onContentPrepare', array(‘com_users.user',&$user,&$user->params, 0 )); // map the fields $userFields = $user->jcfields; foreach ($userFields as $userField) { $userFields[$userField->name] = $userField; } // transform value to rgb $color = $userFields['companycolor']->value; list($r, $g, $b) = sscanf($color, "#%02x%02x%02x"); $rgbcolor = $r.','.$g.','.$b; // define css $css = "body.site { background:".$color ."; }\n"; $css .= ".companybox { background-color:rgba(". $rgbcolor .",0.5) }\n"; // call document object $doc = JFactory::getDocument(); // add local style declaration $doc->addStyleDeclaration($css, $type= 'text/css');

  6. EXAMPLE: LAYOUT OVERRIDE CREATE A Global LAYOUT OVERRIDE 
 OF THE FIELD Or FIelds ContAINER � protostar � html � layouts � com_ fi elds � fi eld � render.php � fi elds � render.php

  7. EXAMPLE: LAYOUT OVERRIDE CREATE A COMPONENT-WISE LAYOUT OVERRIDE OF THE FIELD Or FIelds ContAINER � protostar � html � layouts � com_content � fi eld � render.php � fi elds � render.php

  8. EXAMPLE: ALTERNATE LAYOUT CREATE AN ALTERNATE LAYOUT OF THE FIELD 
 (GLOBALLY OR COMPONENT-WISE) � protostar � html � layouts � com_content � fi eld � netherlands.php { fi eld 1, netherlands}

  9. EXAMPLE: PLUGIN OVERRIDE 
 CREATE aN OVERRIDE OF THE FIELDS PLUGIN ITSELF AND PLACE IT IN YOUR TEMPLATE. � plugins � fi elds � imagelist � tmpl � imagelist.php � protostar � html � plg_ fi elds_imagelist � imagelist.php

  10. EXAMPLE: MEDIA OVERRIDE 
 CREATE A MEDIA OVERRIDE TO 
 CONTROL THE CSS OF EXISTING FIELDS � media � system � css � fi elds � calendar.css � protostar � css � system � fi elds � calendar.css

  11. CREATE YOUR OWN FIELD PLUGIN 1. EASIER INSTALLATION 2. Easier to KEEP IT UP To DATE 
 THROUGH YOUR PROJECTS 
 3. EASIER SHARING wiTH OTHERS 4. MAKE CHANGES EASIER AND FASTER

  12. VIdeo embed WHAT CAN 
 I CREATE? PDF Display Maps Lightboxes Calendars weather Widget Audio Embed Galleries DaTEPICKER Sliders AUTOCOMPLETE slideshare

  13. DOWNLOAD BASIC EXAMPLE PROJECT https://github.com 
 /coolcat-creations/ plg_ fi elds_addresscomplete

  14. BASIC 
 � addresscomplete.xml STRUCTURE � addresscomplete.php � params � addresscomplete.xml � fi elds � addresscomplete.php � tmpl � addresscompletephp � language � en-GB � en-GB.plg_ fi elds_addresscomplete.ini � en-GB.plg_ fi elds_addresscomplete.sys.ini

  15. ADDRESSCOMPLETE.xml The file is the manifest file 
 for your fields plugin. - All important informations for the installation - Global field parameters - List Update Server - List Post Install Scripts

  16. PARAMS/ ADDRESSCOMPLETE.xml - Possible to add 
 field specific parameters here

  17. <?xml version="1.0" encoding="utf-8"?> <form> <fields name="fieldparams"> <fieldset name=“fieldparams"> // Here you can add fields </fieldset> </fields> </form>

  18. FIELDS/ ADDRESSCOMPLETE.PHP - Create the input field - Extending a Field or Custom Form Field 
 https://docs.joomla.org/Creating_a_custom_form_field_type or short-url: https://bit.ly/2GTbOCq

  19. FIELDS/ ADDRESSCOMPLETE.PHP Documentation Algolia: https://community.algolia.com/places/ Example field is a simple text field - extending JFormText Field - adding a special class - adding a script class JFormFieldAdresscomplete extends JFormFieldText 
 Namespaced Example will follow soon!

  20. INITIALISE THE FIELD PLUGIN ADDRESSCOMPLETE.php To show the field at all we have to initialise 
 it in the main plugin file defined('_JEXEC') or die; JLoader::import('components.com_fields.libra ries.fieldsplugin', JPATH_ADMINISTRATOR); class PlgFieldsAddresscomplete extends FieldsPlugin { }

  21. TMPL /ADDRESSCOMPLETE.PHP In the example the user entry is saved as value and will be returned in the frontend like that: defined('_JEXEC') or die; if (!$field->value) { return; } echo $field->value;

  22. READY! INPUT

  23. READY! OUTPUT

  24. BORING!

  25. GET Do MORE! CREATIVE travel.Custom-FielDs.NET Di ff erent uses of the user input 
 value “Address”

  26. TMPL/SUBTEMPLATES 
 ADDING A FLICKR GALLERY /FLICKR.PHP

  27. TMPL/SUBTEMPLAteS ADDING A FORECAST /WEATHER.PHP

  28. TMPL/SUBTEMPLATES ADDING A MAP /MAP.PHP

  29. ANOTHER TUTORIAL OWL CAROUSEL GALLERY coolcat-creations.com/blog

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend