Esempio n. 1
0
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once "../bootstrap/bootstrap.php";
page_access_level(Filter_Roles::CONSULTANT_LEVEL);
@($resource = $_GET['resource']);
@($book = $_GET['book']);
@($chapter = $_GET['chapter']);
@($verse = $_GET['verse']);
if ($resource == "") {
    die;
}
if ($book == "") {
    die;
}
if ($chapter == "") {
    die;
}
if ($verse == "") {
    die;
}
// In JavaScript the resource identifier starts at 1 instead of at 0.
$resource--;
$database_config_user = Database_Config_User::getInstance();
$resources = $database_config_user->getActiveResources();
$resource = $resources[$resource];
$html = Resource_Logic::getHtml($resource, $book, $chapter, $verse);
echo $html;