Example #1
0
function input_err($error, $name)
{
    if (isset($error[$name])) {
        $err_val = $error[$name];
        return lable($err_val, 'error');
    }
    return '';
}
Example #2
0
$trick = new Trick($db, $user->get_id());
$tag = new Tag($db, $user->get_id());
$tricks = $trick->by_name($name);
$tricks_old = array_select_prefix($tricks);
$tags_old = array_select_key($tricks, 'tag_id');
$stances_old = array_select_key($tricks, 'stance');
$directions_old = array_select_key($tricks, 'direction');
$tags_all = $tag->all();
$tags_echo = tag_ids_checkbox_ul($tags_all, $tags_old);
if (!$tags_echo) {
    redirect('/tag/create/index.php?no_tags=1');
}
if (isset($_POST['name'])) {
    if (strlen(validate_name($_POST['name'])) > 0) {
        $error['name'] = validate_name($_POST['name']);
    }
    if (isset($_POST['tag_ids']) && count($_POST['tag_ids']) == 0) {
        $error['tag_ids'] = 'no tags were selected';
    }
    if (count($error) == 0) {
        $prefixes = generate_prefixes(array_keys($_POST['stance']), array_keys($_POST['direction']), $_POST['tag_ids']);
        $delete_tricks = compare_prefixes($tricks_old, $prefixes);
        $create_tricks = compare_prefixes($prefixes, $tricks_old);
        $trick->create($trick_name_id, $create_tricks);
        $trick->delete($trick_name_id, $delete_tricks);
        $trick->update_name($_POST['old_name'], $_POST['name']);
        redirect('/tricks');
    }
}
echo html(title('Homespot - Edit Trick'), navigation($user->is_authed()) . content(h1("Edit Trick") . input_err($error, 'name') . input_err($error, 'tag_ids') . form('post', lable('stance:') . div(lable('normal:') . checkbox('stance[normal]', in_array('normal', $stances_old)) . lable('nolli:') . checkbox('stance[nolli]', in_array('nolli', $stances_old)) . lable('switch:') . checkbox('stance[switch]', in_array('switch', $stances_old)) . lable('fakie:') . checkbox('stance[fakie]', in_array('fakie', $stances_old))) . lable('direction:') . div(lable('none:') . checkbox('direction[none]', in_array('none', $directions_old)) . lable('fs:') . checkbox('direction[fs]', in_array('fs', $directions_old)) . lable('bs:') . checkbox('direction[bs]', in_array('bs', $directions_old))) . input_err($error, 'name') . hidden('old_name', $name) . text('name') . br() . br() . $tags_echo . br() . submit()) . br() . a('delete trick', "/trick/delete/index.php?name={$name}")));
Example #3
0
<?php

require __DIR__ . '/../../../init.php';
$tag = new Tag($db, $user->get_id());
$trick = new Trick($db, $user->get_id());
$error = array();
if (isset($_POST['name'])) {
    if (strlen(validate_name($_POST['name'])) > 0) {
        $error['name'] = validate_name($_POST['name']);
    }
    if (empty($_POST['tag_ids']) || count($_POST['tag_ids']) == 0) {
        $error['tag_ids'] = 'no tags were selected';
    }
    if (count($error) == 0) {
        $prefixes = generate_prefixes(array_keys($_POST['stance']), array_keys($_POST['direction']), $_POST['tag_ids']);
        $name = $_POST['name'];
        if (count($error) == 0) {
            $trick_name_id = $trick->create_trick_name($name);
            $trick->create($trick_name_id, $prefixes);
            redirect();
        }
    }
}
$rows = $tag->all();
$tags = tag_ids_checkbox_ul($rows);
if (!$tags) {
    redirect('/tag/create/index.php?no_tags=1');
}
echo html(title('Homespot - Create Trick'), navigation($user->is_authed()) . content(h1("Create Trick") . form('post', lable('stance:') . div(lable('normal:') . checkbox('stance[normal]') . lable('nolli:') . checkbox('stance[nolli]') . lable('switch:') . checkbox('stance[switch]') . lable('fakie:') . checkbox('stance[fakie]')) . lable('direction:') . div(lable('none:') . checkbox('direction[none]') . lable('fs:') . checkbox('direction[fs]', false) . lable('bs:') . checkbox('direction[bs]', false)) . input_err($error, 'name') . input('text', 'name') . div(lable('tags:')) . input_err($error, 'tag_ids') . $tags . submit())));