http://www.fsf.org/ or write * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * */ /* CONFIGURATION FILE FOR COMMENTATOR cmsdAm PLUGIN */ Class CmsDam_Commentator_Conf { var $comments_per_page; var $comments_td_color; var $max_submit_per_minute; var $max_submit_per_session; var $max_submit_per_IP; function CmsDam_Commentator_Conf() { // YOU MAY WANT TO CHANGE THE SETTINGS BELOW!! /* Input name for comment add */ $this->comments_inputname = "commentatortext"; /* Submit value for comment add */ $this->comments_submitvalue = "Invia commento -->"; /* Submit image name for comment add submit. If is setted overwrite comments_submitvalue*/ #$this->comments_submitimage = "plugins/commentator/img/send.png"; /* If $PageMaxRows is not setted, this is the default number of comments per page */ $this->comments_per_page = 12; /* Default TD background color for the pari rows */ $this->comments_td_color[0] = "#555555"; // $this->comments_td_color[0] = "#FFFFFF"; /* Default TD background color for the dispari rows */ $this->comments_td_color[1] = "#333333"; /* Max comment submit per minute for each session */ $this->max_submit_per_minute = 6; /* Max comment submit per session in 10 minutes */ $this->max_submit_per_session = 25; /* Max comment submit per IP in 10 minutes */ $this->max_submit_per_IP = 25; // END OF USER SETTINGS!! return true; } } ?>