4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: NYChack on March 12, 2005, 09:37:47 PM

Title: How to change the Rating from 1-5 to 1-10?
Post by: NYChack on March 12, 2005, 09:37:47 PM
Hi, does anyone know how to do this? It seems like the standard rating should be "on a scale of 1 to 10" rather than "on a scale of 1 to 5". I was able to change the rating drop down choice to 1 to 10 in the “rate_form.html” template. But when selecting 6-10, it says "invalid rating". I am sure I have to change something in a php file, but I am new at this. Please help!  :roll:

Thank You,
Jason NY, NY USA

------------------------------------------------------------
The Original rate_form.html:

<form method="post" action="{self}">
  <table border="0" cellspacing="0" cellpadding="1">
    <tr>
      <td class="head1">
        <table border="0" cellspacing="0" cellpadding="3" class="row1">
          <tr>
            <td valign="bottom">
              <select name="rating" class="select">
                <option value="">--</option>
                <option value="5">5</option>
                <option value="4">4</option>
                <option value="3">3</option>
                <option value="2">2</option>
                <option value="1">1</option>
              </select>
            </td>
            <td>
              <input type="hidden" name="action" value="rateimage" />
              <input type="hidden" name="id" value="{image_id}" />
              <input type="submit" value="{rate}" class="button" name="submit" />
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</form>

What I changed or added: I just added option values 6 though 10.

                <option value="">--</option>
                <option value="10">10</option>
                <option value="9">9</option>   
                <option value="9">9</option>
                <option value="8">8</option>
                <option value="7">7</option>
                <option value="6">6</option>
                <option value="5">5</option>
                <option value="4">4</option>
                <option value="3">3</option>
                <option value="2">2</option>
                <option value="1">1</option>


Title: Re: How to change the Rating from 1-5 to 1-10?
Post by: Vincent on March 12, 2005, 09:50:50 PM
Öffne "includes/constants.php" und finde:

Code:
define('MAX_RATING', 5); 

ersetze durch
Code:
define('MAX_RATING', 10);

gruss
Vincent
Title: Re: How to change the Rating from 1-5 to 1-10?
Post by: NYChack on March 12, 2005, 10:01:53 PM
Vincent, THANK YOU!!!  It works great now!  :D

Jason NY,NY USA
Title: Re: How to change the Rating from 1-5 to 1-10?
Post by: Vincent on March 12, 2005, 11:11:59 PM
oops sorry did not write in english
but happy it works
vincent
Title: Re: How to change the Rating from 1-5 to 1-10?
Post by: V@no on March 12, 2005, 11:12:53 PM
I just added it to FAQ ;)
Title: Re: How to change the Rating from 1-5 to 1-10?
Post by: NYChack on March 13, 2005, 01:23:44 AM
Vincent - No problem about the language, I just used the German to English Translation in my web Brower!

V@no – Wow! That’s Great!

Jason NY,NY USA