JEMBOT MAWOT Bypass Shell
<?php
/**
 * Class that operate on table 'film'. Database Mysql.
 *
 * @author: http://phpdao.com
 * @date: 2015-01-28 23:26
 */
class FilmMySqlExtDAO extends FilmMySqlDAO {
    /**
     * Get all records from table ordered by field
     *
     * @param $orderColumn column name
     */
    public function queryActifGroupeOrderBy($orderColumn, $groupe) {
        $sql = 'SELECT * FROM film where actif= -1 and acceuil=-1 and fkGroupe =? ORDER BY ' . $orderColumn;
        $sqlQuery = new SqlQuery($sql);
        $sqlQuery->setNumber($groupe->pkGroupe);
        return $this->getList($sqlQuery);
    }
}
?>
xxxxx1.0, XXX xxxx