• New Commercial Services Section

    We have now opened a commercial services section here on the forum. If you have a Fabrik project that you wish to have someone work on for you, post it under Help Wanted. If you are an application developer and wish to earn some money helping others, post your details under Fabrik Application Developers.

    Both of these are unmoderated. It will be up to both parties to work out the details and come to an agreement.

Form Article Plugin Tutorial

  • Views Views: 2,251
  • Last updated Last updated:

Navigation

         Form Article Plugin Tutorial
      Autofill form plugin
      Clone form plugin
      Comment form plugin
      Email form plugin
      EXIF form plugin
      FTP form plugin
      J2store form plugin
      Kunena form plugin
      Limit form plugin
      Logs form plugin
      Mailchimp form plugin
      Paginate form plugin
      Paypal form plugin
      PHP form plugin
      Pingdotfm form plugin
      Receipt form plugin
      Redirect form plugin
      REST form plugin
      Slack form plugin (+)
      SMS form plugin
      Twitter form plugin
      Upsert form plugin
      VBforum form plugin
      Create a Search Form
      Accordion Form Groups
  • This tutorial will show you how to make Joomla content items and use a Joomla content item as a template and insert into that template Fabrik Elements.
    Also in this tutorial you will learn how to make a calc element that will replace an element value with an image.


    Plugins used
    Article Plugin
    Redirect Plugin

    Validation plugins
    Isnot empty


    First of all you need to make a new list - I called mine Match Reports

    These are the Elements that need to be made.

    Match Report List Elements
    id
    date_time
    Match_Date (Date element)
    Title (Field element)
    Home_Team (Database join element)
    Home_Team_Alt (Field element)
    Home_Team_Calc (calc element)
    Away_Team (Database join element)
    Away_Team_Alt (Field element)
    Away_Team_Calc (calc element)
    Home_Team_Score (Field element)
    Away_Team_Score (Field element)
    Match_Report_Content (Textarea element)
    Category (Field element)
    Author (User element) - (hidden element)
    Publish_up (Date element) - (hidden element)
    Publish_down (Date element) - (hidden element)
    Published (Dropdown element)
    Featured (Dropdown element) - (hidden element)
    Meta_Key (Field element) - (hidden element)
    Meta_desc (Field element) - (hidden element)
    Tags (Field element)

    Teams List Elements
    id
    date_time
    Team_Name

    First of all you need to create two Lists, one to hold all the Elements for the content and one list to hold the team names.
    The team names list is used as a reference for the team names in the main form. We will use database join Elements to insert the team names.
    Calc Elements
    This is an extra element in the list that turns the team names into icons.
    I have a folder called teamicons inside the images folder and all of the images in there are the same .png format and named exactly the same as the team names.
    The Home_Team and Away_Team Elements are both database join Elements that look at the Teams list.
    The Home_Team_Calc and Away_Team_Calc Elements look at the Home_Team and Away_Team Elements and return the images.
    Inside the calc Elements click on the More tab and enter your calc code there.
    return "<img src='http://yoursite/images/teamicons/{yourtablename___Home_Team}.png' />";

    Article Template
    Once all the Elements are made the next job is to make an article template. What I did was make a new joomla content category called Article Templates so that the templates are separate from the content categories.
    I used simple CSS to construct the layout, you can wrap the elements in different style elements such as -

    <div class="row-fluid">
    <h1>{yourtablename___Title}</h1>
    </div>
    <div class="row-fluid">
    <p><strong>Date:</strong>{yourtablename___Match_Date}</p>
    </div>
    <div class="row-fluid">
    {yourtablename___Content}
    </div>

    Setting up the article plugin

    First of all you need to fill in the Options tab and point the Article template dropdown to the joomla article template we created earlier.
    Category - here you can force al lthe articles into a pre selected category or you can add in an element into the list that will hold the category info and then fill out the Or element dropdown.
    Reference element - link this to the Keywords element.
    Delete Mode - here you can set it up so that when you delete the fabrik record it wil lchange the publishing state or trash/delete the joomla article.
    Fields Tab
    Here you want to match up all of the dropdowns to the correct elements in the list.
    In my site I have hidden a lot of these elements from the form but they still need to me filled out - I think the plugin does not work unless all of these dropdowns are matched correctly.
    For instance I do not ever use the published down - Featured - Meta key - Meta Description and have them hidden.
    I also have set the Published element to be a Dropdown element that has two values - Published and Unpublished with Unpublished set to default. This way an admin of the site has to read the arictle first then when happy with the content set the element to Published.

    Redirect Plugin
    I made a joomla article with simple HTML in that thanks the user for submitting a match report and the redirect plugin is set to only work on the front end of the site.
    First of all view the article in the front end and grab the URL of it then paste it into the Jump Page box in the redirect plugin.

    Validation plugin
    Finally I added this plugin to make sure that the Content element was not empty.

    So hopefully now you have learnt how to use the form article plugin correctly.
Back
Top