MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/artinside/www/raquel/themes/admin/widgets/blog/post.php
<?php $v->layout("_admin"); ?>
<?php $v->start("css")?>
    <link rel="stylesheet" type="text/css" href="<?= url("admin-assets/css/gallery.css"); ?>" />

<?php $v->end(); ?>
<!-- importante para reposiçao de imagens que ultrapassam limite -->
<img class="radius img-open" style="width: 20%; display: none" src="<?= image($post->cover, 400); ?>" id="old-file"/>
<!-- fim -->
<div class="mce_upload" style="z-index: 1001 !important;">
    <div class="mce_upload_box">
        <form class="app_form" action="<?= url("/admin/blog/post"); ?>" method="post" enctype="multipart/form-data">
            <input type="hidden" name="upload" value="true"/>
            <label>
                <label class="legend">Selecione uma imagem JPG ou PNG:</label>
                <input accept="image/*" type="file" name="image" required class="form-control"/>
            </label>
            <button class="btn btn-danger icon-upload">Enviar Imagem</button>
        </form>
    </div>
</div>
<section class="wrapper">

    <?php if (!$post): ?>
    <div class="row">
        <div class="col-12 text-center my-4 text-sm-center">
            <h3> Novo Post</h3>
            <p>Crie um novo Artigo </p>
        </div>

        <div class="col-lg-9">
            <section class="card">
                <header class="card-header infinity-bg white-text">
                    Cadastrar Post
                </header>
                <div class="card-body">
                    <form class="form-horizontal tasi-form" method="post" action="<?= url("/admin/blog/post"); ?>">
                        <input type="hidden" name="action" value="create"/>
                        <div class="form-group row" hidden>
                            <label class="col-sm-2 col-sm-2 control-label">Capa (1920x1080px)</label>
                            <div class="col-sm-10">
                                <input type="file" name="cover" placeholder="Uma imagem de capa" class="form-control" id="j_img_preview"/>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>

                        </div>

                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Título*</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="title">
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Subtítulo*</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="subtitle">
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Vídeo</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="video">
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Conteúdo*</label>
                            <div class="col-sm-10">
                                <textarea name="content" class="form-control mce"></textarea>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>

                        <div class="form-group row">
                            <label class="col-md-2 control-label">Categoria*</label>
                            <div class="col-md-4">
                                <select name="category" class="form-control" required>
                                    <?php foreach ($categories as $category): ?>
                                        <option value="<?= $category->id; ?>"><?= $category->title; ?></option>
                                    <?php endforeach; ?>
                                </select>
                            </div>
                            <label class="col-md-2 control-label">*Autor</label>
                            <div class="col-md-4">
                                <select name="author" class="form-control" required>

                                    <?php

                                    foreach ($authors as $author): ?>
                                        <option value="<?= $author->id; ?>" <?= (user()->id ? "selected" : "")?>><?= $author->fullName(); ?></option>
                                    <?php endforeach; ?>


                                </select>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-md-2 control-label">Status*</label>
                            <div class="col-md-4">
                                <select name="status" class="form-control" required>
                                    <option value="post">Publicar</option>
                                    <option value="draft">Rascunho</option>
                                    <option value="trash">Lixo</option>
                                </select>
                            </div>
                            <label class="col-md-2 control-label">Data de publicação:</label>
                            <div class="col-md-4">
                                <input class="mask-datetime form-control" type="text" name="post_at" value="<?= date("d/m/Y H:i"); ?>"
                                       required/>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>

                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Galeria</label>
                            <div class="col-sm-10">
                                <input type="file" name="gallery[]" placeholder="Uma imagem de capa" class="form-control" multiple id="gallery-upload"/>
                                <span class="help-block">Envie até 5 imagens por vez com até 5mb cada imagem</span>
                            </div>
                        </div>
                        <button class="btn btn-primary" type="submit">Publicar</button>
                        <a class="btn btn-danger" href="<?= url("/admin/blog/home"); ?>">Cancelar</a>

                    </form>
                </div>
            </section>
        </div>
        <div class="col-lg-3">
            <section class="card">
                <header class="card-header infinity-bg white-text text-center">
                    Imagem de capa
                </header>
                <img class="radius img-open" style="width: 100%;" src="<?= image($post->cover, 400); ?>" id="image-preview"/>
            </section>
        </div>
    </div>
    <?php else: ?>
    <div class="row">
        <div class="col-12 text-center my-4 text-sm-center">
            <h4> Editar post [<?= $post->title; ?>] #<?= $post->id; ?> </h4>
            <p><a class="icon-link btn btn-success" href="<?= url("/blog/{$post->uri}"); ?>" target="_blank" title="">Ver no
                    site</a></p>
        </div>



        <div class="col-lg-9">
            <section class="card">
                <header class="card-header infinity-bg white-text">
                    Editar Post
                </header>
                <div class="card-body">
                    <form class="form-horizontal tasi-form" method="post" action="<?= url("/admin/blog/post/{$post->id}"); ?>" >
                        <input type="hidden" name="action" value="update"/>
                        <div class="form-group row" hidden>
                            <label class="col-sm-2 col-sm-2 control-label">Capa (1920x1080px)</label>
                            <div class="col-sm-10">
                                <input type="file" name="cover" placeholder="Uma imagem de capa" class="form-control" id="j_img_preview"/>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>

                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Título*</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="title" value="<?= $post->title; ?>" >
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Subtítulo*</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="subtitle" value="<?= $post->subtitle; ?>" >
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Vídeo</label>
                            <div class="col-sm-10">
                                <input type="text" class="form-control" name="video" value="<?= $post->video; ?>" >
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Conteúdo*</label>
                            <div class="col-sm-10">
                                <textarea name="content" class="form-control mce"><?= $post->content; ?></textarea>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>

                        <div class="form-group row">
                            <label class="col-md-2 control-label">Categoria*</label>
                            <div class="col-md-4">
                                <select name="category" class="form-control" required>
                                    <?php foreach ($categories as $category):
                                        $categoryId = $post->category;
                                        $select = function ($value) use ($categoryId) {
                                            return ($categoryId == $value ? "selected" : "");
                                        };
                                        ?>
                                        <option <?= $select($category->id); ?>
                                                value="<?= $category->id; ?>"><?= $category->title; ?></option>
                                    <?php endforeach; ?>
                                </select>
                            </div>
                            <label class="col-md-2 control-label">*Autor</label>
                            <div class="col-md-4">
                                <select name="author" class="form-control" required>
                                    <?php foreach ($authors as $author):
                                        $authorId = $post->author;
                                        $select = function ($value) use ($authorId) {
                                            return ($authorId == $value ? "selected" : "");
                                        };
                                        ?>
                                        <option <?= $select($author->id); ?>
                                                value="<?= $author->id; ?>"><?= $author->fullName(); ?></option>
                                    <?php endforeach; ?>
                                </select>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>
                        <div class="form-group row">
                            <label class="col-md-2 control-label">Status*</label>
                            <div class="col-md-4">
                                <select name="status" class="form-control" required>
                                    <?php
                                    $status = $post->status;
                                    $select = function ($value) use ($status) {
                                        return ($status == $value ? "selected" : "");
                                    };
                                    ?>
                                    <option <?= $select("post"); ?> value="post">Publicar</option>
                                    <option <?= $select("draft"); ?> value="draft">Rascunho</option>
                                    <option <?= $select("trash"); ?> value="trash">Lixo</option>
                                </select>
                            </div>
                            <label class="col-md-2 control-label">Data de publicação:</label>
                            <div class="col-md-4">
                                <input class="mask-datetime form-control" type="text" name="post_at" value="<?= date_fmt($post->post_at, "d/m/Y H:i"); ?>"
                                       required/>
                                <!-- <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>-->
                            </div>
                        </div>

                        <div class="form-group row">
                            <label class="col-sm-2 col-sm-2 control-label">Galeria</label>
                            <div class="col-sm-10">
                                <input type="file" name="gallery[]" placeholder="Uma imagem de capa" class="form-control" multiple id="gallery-upload"/>
                                <span class="help-block">Envie até 5 imagens por vez com até 5mb cada imagem</span>
                            </div>
                        </div>
                        <button class="btn btn-primary" type="submit">Publicar</button>
                        <a class="btn btn-danger" href="<?= url("/admin/blog/home"); ?>">Cancelar</a>

                    </form>
                </div>
            </section>
        </div>
        <div class="col-lg-3">
            <section class="card">
                <header class="card-header infinity-bg white-text text-center">
                    Imagem de capa
                </header>
                <img class="radius img-open" style="width: 100%;" src="<?= image($post->cover, 400); ?>" id="image-preview"/>

            </section>

            <?php if($gallery):?>
            <section class="card">
                <header class="card-header infinity-bg white-text text-center">
                    Galeria de Imagens
                </header>
                <div class="card-body">
                    <ul class="grid cs-style-8 j-deleta">
                        <?php foreach ($gallery as $g) :?>
                            <li data-delete="<?= $g->id ?>">
                                <figure>
                                    <img src="<?= image($g->gallery, 500, 500)?>" alt="img04">
                                    <figcaption>
                                        <a class="bg-infinity" rel="group" href="" id="delete-gallery"
                                           data-id="<?= $g->id ?>"
                                           data-url="<?= url("/admin/removeimagegallery")?>">
                                            <i class="fa fa-trash-o"></i></a>
                                    </figcaption>
                                </figure>
                            </li>
                        <?php endforeach;?>
                    </ul>
                </div>
            </section>
        </div>
        <?php endif; ?>




    </div>
    <?php endif; ?>

</section>

<?php $v->start("scripts")?>
    <script src="<?= url("admin-assets/js/toucheffects.js")?>"></script>
    <script src="<?= url("admin-assets/js/modernizr.custom.js")?>"></script>

<?php $v->end(); ?>