HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/kms.komma.pro/wwwroot/app/views/basic_page/v_form.php
<div id="item">
    <form action="<?php $this->getData('form_action') ?>" method="post" id="item_data">
        <div class="header">
            <div class="inner">
                <span id="save" class="btn<?php $this->getData('btn_class'); ?>" data-save="<?php echo $this->lang['save']; ?>">
                    <input type="submit" name="save" value="<?php $this->getData('btn_value'); ?>" />
                    <span class="hover"></span>
                    <span class="up">
                        <span class="shadow"></span>
                    </span>
                </span>
                <a id="delete" class="remove_item" href="<?php $this->getData('form_remove_link'); ?>">&nbsp;</a>
            </div>
        </div>
        <div class="tab_holder">
            <?php $this->getData('tabs'); ?>
        </div>
        <div class="info">
            <div class="inner">
                <?php $this->getData('form_fields'); ?>

                <input type="hidden" name="form_type" value="<?php $this->getData('form_type'); ?>" />
                <?php
                    if($this->getData('form_type',false) == 'edit')
                    {
                        echo '<input type="hidden" name="edit_id" value="'. $this->getData('edit_id',false) .'" />';
                    }
                ?>
                <input type="hidden" id="form_save_link" name="form_save_link" value="<?php $this->getData('form_save_link'); ?>" />
                <div class="clear"></div>
            </div>
        </div>
        <div class="bg"></div>

        <div class="file_bar">
            <div class="inner">
                <h3>Images</h3>
                <div class="image_section">
                    <span class="shadow"></span>
                </div>

                <h3>Videos</h3>
                <div class="video_section">
                    <span class="shadow"></span>
                </div>

                <h3>Documents</h3>
                <div class="document_section">
                </div>

                <div class="clear"></div>
            </div>
        </div>
    </form>
</div>