コード例 #1
0
ファイル: challenge_save.php プロジェクト: socialweb/PiGo
 */
// here the new challlenge that created by the user is being saved
IzapBase::gatekeeper();
if (IzapBase::hasFormError()) {
    if (sizeof(IzapBase::getFormErrors())) {
        foreach (IzapBase::getFormErrors() as $error) {
            register_error(elgg_echo($error));
        }
    }
    forward(REFERRER);
}
//get all form attributes
$challenge_form = IzapBase::getPostedAttributes();
$_SESSION['zcontest']['challenge'] = $challenge_form;
$challenge_entity = new IzapChallenge((int) $challenge_form['guid']);
IzapBase::updatePostedAttribute('tags', string_to_tag_array($challenge_form['tags']));
$challenge_entity->setAttributes();
if ($challenge_entity->max_quizzes < 2) {
    $challenge_entity->max_quizzes = 2;
}
//save the media for the quiz
$challenge_entity->izap_upload_generate_thumbs($_FILES, $thumb);
if (!$challenge_entity->save()) {
    register_error(elgg_echo("Error in challenge creation"));
    forward(REFERER);
}
// checks the format of the uploaded files, if it is authorised
if (!empty($_FILES['related_media']['name'])) {
    $supproted_media = array('audio/mp3', 'image/jpeg', 'image/gif', 'image/png', 'image/jpg', 'image/jpe', 'image/pjpeg', 'image/x-png');
    if (!in_array($_FILES['related_media']['type'], $supproted_media)) {
        register_error(elgg_echo('izap-contest:no file support'));
コード例 #2
0
ファイル: quiz_save.php プロジェクト: socialweb/PiGo
            register_error(elgg_echo($error));
        }
    }
    forward(REFERRER);
    exit;
}
// Get input data
$quiz_form = IzapBase::getPostedAttributes();
if (!isset($quiz_form['correct_option'])) {
    register_error(elgg_echo('izap-contest:quiz:error:no_options'));
    forward(REFERER);
}
$_SESSION['zcontest']['quiz'] = $quiz_form;
// Make sure the title isn't blank
$quiz_entity = new IzapQuiz($quiz_form['guid']);
IzapBase::updatePostedAttribute('tags', string_to_tag_array($quiz_entity['tags']));
$quiz_entity->setAttributes();
if ($quiz_form['qtype'] == 'video') {
    $video_api = new IZAPVideoApi($quiz_form['related_media']);
    $video = $video_api->createVideoEntity();
    if (isset($video_api->errors)) {
        foreach ($video_api->errors as $error) {
            register_error($error);
        }
    }
    $quiz_entity->video_guid = $video->guid;
}
// Set its owner to the current user
$challenge_entity = get_entity($quiz_form['container_guid']);
if (!$quiz_form['guid']) {
    $quiz_entity->container_guid = $quiz_form['container_guid'];