Hi,I am looking to add to the FAQ part of the ticketing system. I would like the post to tell us who created the FAQ, Their job role and the date created. as well as an who updated part and when they updated it. and it needs to be able to be seen by anyone who can view the FAQ.Whether this is done automatically through the system, or even a simple drop down selection either will be fine.Any suggestions?Thanks in advance

creator and job roles are not tracked in the database.created date is.ost_faq table created field.You would have to alter the database structure and then the FAQ save process to save those data points.  Then you would have to change the query that popuylates that information so it can be displayed.

Is there a way of some default text being already entered in the FAQ answer box?

It's ok, i've found a work around/solution for this now.ThanksKind Regards

Please post your work around in case someone else needs this sort of thing. :)

No problem.File changed was/opt/osticket/upload/include/staff/faq.inf.phpand I simply added this to appear in the textarea<span style="color(0, 0, 0);"><strong><em><strong>Author: <br> Position: <br> Date: <br><br> Updated by: <br> Updated on:</strong><br></em></strong><br></span><span></span>which is basically shows the below text in the text area. and I simply make the users fill it out.Author: Position: Date: Updated by: Updated on: This is the code segment with the changes inside it.<textarea name="answer" cols="22" rows="12"                    style="width%;" class="richtext draft"                    data-draft-namespace="faq"                    data-draft-object-id="<?php if (is_object($faq)) echo $faq->getId(); ?>"                    ><?php echo $info; ?><span style="color(0, 0, 0);"><strong><em><strong>Author: <br> Position: <br> Date: <br><br> Updated by: <br> Updated on:</strong><br></em></strong><br></span><span></span></textarea>  and before it was<textarea name="answer" cols="22" rows="12"                    style="width%;" class="richtext draft"                    data-draft-namespace="faq"                    data-draft-object-id="<?php if (is_object($faq)) echo $faq->getId(); ?>"                    ><?php echo $info; ?></textarea>Hope this helps someone.Thanks for the replies as well.and I hope whoever is reading this has a great day.

7 days later

Hi,I decided to do some more work on this, and I tried adding the php code <?php echo sprintf(__('Author, %s.'), '<strong>'.$thisstaff->getName().'</strong>'); ?>Which should get the full name (and it does) but i only see it flash for a short moment when i refresh.Any advice?

13 days later

Hi All,I have finally done it.<?php $name88 = '<strong>'.$thisstaff->getName().'</strong>'?><textarea name="answer" cols="22" rows="12"                    style="width%;" class="richtext draft"                    data-draft-namespace="faq"                    data-draft-object-id="<?php if (is_object($faq)) echo $faq->getId(); ?>"                    ><?php echo $info; ?><span style="color(0, 0, 0);"><strong><em><strong>Author: <?php echo nl2br($name88); ?><br> Position: <?php if ($name88 = 'Jim Bob') {echo "IT Apprentice";} elseif ($name88 = "Tom Cat") {echo "IT Manager";} elseif ($name88 = "Mike Tim") {echo "IT Support";} else {echo "";} ?><br> Date: <?php echo date("m/d/y");?> <br><br> Updated by: <br> Updated on:</strong><br></em></strong><br></span><span></span></textarea>So the above code sets the variable $name88 to hold the users full name. Then in the text box appears the text and php is used to echo the value in $name88. Php if and elseif statements allow the users role to be echoed. and the date is also a PHP function that is simply implemented.The issue of the name disappearing but appearing for a short moment was the draft copy being retrieved. to counter act this, I created a FAQ and then deleted it, and then when you go to create a new FAQ the draft is erased due to it being made into a live FAQ.Hope this helps someone.

4 months later

I've changed this now so it's slightly better now.<?php  $name88 = $thisstaff->getName(); $jim = "Jim Bob"; $tom = "Tom Cat"; $mike = "Mike Tim"; ?>                <textarea name="answer" cols="22" rows="12"                    style="width%;" class="richtext draft"                    data-draft-namespace="faq"                    data-draft-object-id="<?php if (is_object($faq)) echo $faq->getId(); ?>"                    ><?php $textarea = $info; echo $info; ?> <!-- Set Job Variable --> <?php if ($name88 == $tom) {$job = "IT Manager";} elseif ($name88 == $Jim) {$job = "IT Apprentice";} elseif ($name88 == $mike) {$job = "IT Support";} else {$job = "";} ?> <?php $todayte = date('d/m/y')?> <?php if ($textarea == "") { echo "<span style='color(0, 0, 0);'><strong><em><strong>Author: $name88 <br> Position: $job <br> Date: $todayte</strong><br></em></strong><br></span><span></span>" ;} else { echo "<span style='color(0, 0, 0);'><strong><em><strong>Updated by: $name88 <br> Updated on: $todayte</strong></em></strong></span><br><br>";} ?>      </textarea>It now checks if text box is empty or not and puts appropriate text into it.All names, Job titles, Dates are all set up as variables outside the echo code.This allows the whole thing to be automatic now and allow viewers to see whether the faqs are up to date by adding updated date and which user updated at the bottom now.

    a year later

    This is awesome man, much appreciated. I was looking to see if this was possible as my boss was asking me to track who is posting Knowledgebase articles. This would be a good thing to put into the new versions of osTicket going forward FYI to the devs. Tracking that metric can be important for some companies. It would also be nice to have departmental knowledgebases so that the different departments couldnt see each others knowledgebase. Food for thought.

    Anyways i'm gonna try this out on my test server today thanks alot TheDeadGuy

    Could you tell me what lines of code you replaced, or where exactly in the code you placed this? Much appreciated.

    Ok so I tested this myself, works pretty good. Heres a better pasted version:

    <?php
    $name = $thisstaff->getName();
    $user = "John Doe";
    $user2 = "Jane Smith";
    ?>
    <textarea name="answer" cols="22" rows="12" style="width%;" class="richtext draft" data-draft-namespace="faq" data-draft-object-id="<?php if (is_object($faq)) echo $faq->getId(); ?>">
    <?php
    $textarea = $info;
    echo $info;
    ?>
    <?php
    if ($name == $user){
    $job="IT Support";}
    elseif($name == $user1){
    $job="Operations";}
    else {$job="";}
    ?>
    <?php $todayte = date('d/m/y/')?>
    <?php if ($textarea == "") {
    echo "<span style='color(0,0,0);'><strong><em><strong>Author: $name <br> Position: $job <br> Date: $todayte</strong><br></em></strong><br></span><span></span>";}
    else {
    echo "<span style='color(0,0,0);'><strong><em><strong>Updated by: $name <br> Updated on: $todayte</strong></em></strong></span><br><br>";}
    ?>
    </textarea>
    

    So I thought instead of doing an

    if

    check using the $name variable to see what $job or 'position' the user is to use the following:

    $job = thisstaff->getDepartments();
    

    However when I tested this, the output is always "Array" and I'm not sure why.

    Also, when the updated 'echo' occurs, I always get "Array" before "Updated by: $name" etc.

    I think this has something to do with

    $textarea = $info;

    because at the top of 'faq.inc.php' we have another variable that is like so:

    $info = $qs = array();

    However, I'm not a big PHP expert, so I wouldn't know how to fix this issue.

    Regardless, i just removed the job portions as all I really needed was the user and date information, and those work.

    Apart from the random 'Array' echo appearing before "Updated by:" this works damn well.

    I stuck this code on line 193, right after </textarea>.

    Hope that helps and hope a dev or someone better at PHP can explain why the "Arrays" show up instead of the Department name, and why theres an "Array" string before "Updated by:".

    !! EDIT !!

    This is the final code I'm using:

    <?php
    $name = $thisstaff->getName();
    ?>
    <textarea name="answer" cols="22" rows="12" style="width%;" class="richtext draft" data-draft-namespace="faq" data-draft-object-id="<?php if (is_object($faq)) echo $
    <?php
    $textarea = $info;
    echo $info;
    ?>
    <?php
    $todayte = date('m/d/y/');
    ?>
    <?php if ($textarea == "") {
    echo "<span style='color(0,0,0);'><strong><em><strong>Author: $name <br> Date: $todayte</strong><br></em></strong><br></span><span></span>";
    }
    else {
    echo "<span style='color(0,0,0);'><strong><em><strong>Updated by: $name <br> Updated on: $todayte</strong><br></em></strong><br></span><span></span><br>";
    }
    ?>
    </textarea>
    

    However the issue I'm encountering now is that on a brand new FAQ it populated with "Updated by:" when it shouldn't according to this 'if' check:

    <?php if ($textarea == "") {
    

    This should check the textarea and see if its blank, correct? And if so it then says:
    if blank, echo "Author: $name" etc.
    ELSE echo "Updated by:"

    So I'm confused why its not detecting that the textarea is blank. Does anyone have a better idea on how to detect if the 'textarea' is blank?

    Ok I finally got a non-buggy functioning version, however I deviated from @TheDeadGuy original code a bit.

    On lines 9-11 of "faq.inc.php" I added the following variables, respectively:

    $user = $thisstaff->getName();
    $todate = date("m/d/Y h:i a");
    $userinfo = "<p><i>Updated by: $user | Updated: $todate</i></b></p>";
    

    On lines 38-40, I added the following variables, respectively:

    $name = $thisstaff->getName();
    $todate = date("m/d/Y h:iA");
    $userinfo = "<p><br><br><br><br><b><i>Author: $name | Posted: $todate</i></b></p>";
    

    Starting at line 187 the original code looks like so:

     <textarea name="<?php echo $aname; ?>" cols="21" rows="12"
            data-width="670px"
            class="richtext draft" <?php
    list($draft, $attrs) = Draft::getDraftAndDataAttrs('faq', $namespace, $answer);
    echo $attrs; ?>><?php echo $draft ?: $answer;
            ?></textarea>
    

    I modified that code to the following:

     <textarea name="<?php echo $aname; ?>" cols="21" rows="12"
            data-width="670px"
            class="richtext draft" 
    <?php
    list($draft, $attrs) = Draft::getDraftAndDataAttrs('faq', $namespace, $answer);
    echo $attrs; $answer = $answer . $userinfo; 
    ?>>
    <?php echo $draft ?: $answer;
           ?></textarea>
    

    I tested this on an Ubuntu 16.04 server running PHP 5.6 on osTicket version 1.10.5.

    What the code should do is put "Author: name | Posted: date & time" on new FAQ's.

    When an existing FAQ is being edited it should post "Updated by: name | Posted date & time" directly under the previous "Author: etc."

    If the date/time is not correct, make sure to change your 'php.ini' config accordingly.

    Hope this helps someone just as @TheDeadGuy helped me! ?

    Write a Reply...