# vdocipher/1.11/include/options.php

VdoCipher: Secure Video Player and Hosting, version 1.11. 57 lines.

- Page: https://pluginprobe.com/plugins/vdocipher/1.11/code/include/options.php
- Raw: https://pluginprobe.com/plugins/vdocipher/1.11/raw/include/options.php
- Modified: 2017-02-28T05:08:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/vdocipher/1.11/code/include/options.php#L10-L20`.

```php
<?php
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) {
    header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
    exit("<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\r\n<html><head>\r\n<title>404 Not Found</title>\r\n".
        "</head><body>\r\n<h1>Not Found</h1>\r\n<p>The requested URL " . $_SERVER['SCRIPT_NAME'] . " was not found on ".
        "this server.</p>\r\n</body></html>");
}
?>
<div class="wrap">
<h2>VdoCipher Options</h2>

<form method="post" action="options.php"> 
<?php
settings_fields('vdo_option-group');
do_settings_sections('vdo_option-group');
?>
    <div class="updated">
        <p><strong>Status : </strong> Ready to use. You can now embed your videos inside posts and pages.</p>
    </div>
    <table class="form-table">
        <tr valign="top">
        <th scope="row">Client Secret Key</th>
        <td><input type="text" name="vdo_client_key"
          value="<?php echo esc_attr(get_option('vdo_client_key')); ?>"
          max-length="64" size="60" id="vdo_client_key" /></td>
        </tr>
         
        <tr valign="top">
        <th scope="row">Default Width</th>
        <td><input type="text" name="vdo_default_width"
          value="<?php echo esc_attr(get_option('vdo_default_width')); ?>"
        /></td>
        </tr>
        
        <tr valign="top">
        <th scope="row">Default Height</th>
        <td><input type="text" name="vdo_default_height"
          value="<?php echo esc_attr(get_option('vdo_default_height')); ?>"
        /></td>
        </tr>
        
        <tr valign="top">
        <th scope="row">Annotation Statement</th>
        <td>
            <textarea name="vdo_annotate_code" type="textarea" rows="5" cols="60"><?php
            if (get_option('vdo_annotate_code') != "") {
                echo get_option('vdo_annotate_code');
            }
            ?></textarea>
            <p class="description">Leave this text blank in case you do not need watermark over all Videos</p>
        </td>
        </tr>
    </table>
<?php submit_button(); ?>
</form>
</div>

```
