예제 #1
0
                    <!-- task body -->
                    <br>
                    <br>
                    <label style="font-weight: bold;display:block;">Content:</label>

                    <p id="message">Start typing below</p>
                    <?php 
echo Form::textarea('ArticleContent', Input::old('ArticleContent', $passedArticle->content), array("id" => "textareabox"));
?>
                    <br>

                    <label style="font-weight: bold;display:block;">Tags:</label>

                    <p id="message" style="margin-bottom: 4px;">Add one or more tags for SEO</p>
                    <?php 
echo cmsHelper::getTagSelectBox(Session::has('EditedTags') ? Session::get('EditedTags') : $passedArticle->getTagItems());
?>


                    <br><br>
                    <label style="font-weight: bold;display:block;">Final Settings:</label>

                    <p id="message" style="margin-bottom: 4px;">Adjust final settings before publishing</p>


                    <div id="articlesettings">
                        <table>
                            <tr>
                                <td><p>Post Status </p></td>
                                <td><?php 
echo Form::select('StatusSelect', cmsHelper::getArticleStatusArray(), Input::old('StatusSelect', $passedArticle->status));