PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
vxcash
/
admin
/
partials
<?php /** * @var Vxcash_Pornme_Video_Admin $this */ ?> <div class="wrap"> <script type="text/javascript"> var ajax_nonce = '<?php echo wp_create_nonce('vxcash-pornme-ajax'); ?>' </script> <h2><?php echo esc_html(get_admin_page_title()); ?></h2> <?php echo $warning; ?> <div id="tabs"> <ul> <li><a href="#tabs-1">Direkter Import</a></li> <li><a href="#tabs-2">Automatischer Import</a></li> </ul> <div id="tabs-1"> <form action=""> <label for="pmKeywords">Video-Tags: </label> <select name="pmKeywords" id="pmKeywords"> <option value=""></option> <?php foreach ($this->keywords as $keyword) { echo "<option value=\"$keyword\">$keyword</option>"; } ?> </select> <label for="pmHosts">Darsteller: </label> <select name="pmHosts" id="pmHosts"> <option value=""></option> <?php foreach ($this->hosts as $host) { $id = $host['id']; $name = $host['name']; echo "<option value=\"$id\">$name</option>"; } ?> </select> <?php submit_button('Get List', 'primary', 'videoSubmit', false); ?> <div class="spinner" style="float: none;"></div> </form> <p> </p> <style> table#videos { border-collapse: collapse; } table#videos th, table#videos td { border: 1px solid black; padding: 5px; } </style> <form action="" id="videoImport"> <p>Ausgewählte Videos importieren:</p> <label for="author"> Author: <select name="author" id="author"> <?php $users = get_users(array('who' => 'authors')); /** @var WP_User $user */ foreach ($users as $user) { $selected = get_current_user_id() == $user->data->ID ? 'selected' : ''; printf('<option value="%s" %s>%s</option>', $user->data->ID, $selected, $user->data->user_nicename); } ?> </select> </label> <label for="status"> Status: <select name="status" id="status"> <option value="publish">Veröffentlicht</option> <option value="draft">Entwurf</option> </select> </label> Age: <label for="fsk18"><input type="radio" name="fsk" id="fsk18" value="18" checked /> 18</label> <label for="fsk16"><input type="radio" name="fsk" id="fsk16" value="16" /> 16</label> <label for="description"> Beschreibung importieren <select name="description" id="description"> <option value="1">Ja</option> <option value="0">Nein</option> </select> </label> <label for="categories">Importieren in Kategorie: </label> <?php $args = array( 'show_option_all' => '', 'show_option_none' => '', 'option_none_value' => '-1', 'orderby' => 'ID', 'order' => 'ASC', 'show_count' => 0, 'hide_empty' => 0, 'child_of' => 0, 'exclude' => '', 'echo' => 1, 'selected' => 0, 'hierarchical' => 0, 'name' => 'cat', 'id' => 'categories', 'class' => 'postform', 'depth' => 0, 'tab_index' => 0, 'taxonomy' => 'category', 'hide_if_empty' => false, 'value_field' => 'term_id', ); wp_dropdown_categories($args); ?> <?php submit_button('Ausgewählte importieren', 'primary', 'videoImportSubmit', false); ?> <div class="spinner" style="float: none;;"></div> <p> </p> <table id="videos"> <tr valign="top"> <th width="50"><label><input type="checkbox" name="" id="allVideos"> Alle</label></th> <th width="120">Preview</th> <th>Titel</th> <th>Beschreibung</th> <th>Länge</th> </tr> </table> </form> </div> <div id="tabs-2"> <label for="autoPmKeywords">Video-Tags: </label> <select name="autoPmKeywords" id="autoPmKeywords"> <option value=""></option> <?php foreach ($this->keywords as $keyword) { echo "<option value=\"$keyword\">$keyword</option>"; } ?> </select> <label for="autoPmHosts">Darsteller: </label> <select name="autoPmHosts" id="autoPmHosts"> <option value=""></option> <?php foreach ($this->hosts as $host) { $id = $host['id']; $name = $host['name']; echo "<option value=\"$id\">$name</option>"; } ?> </select> <label for="autoAuthor"> Author: <select name="autoAuthor" id="autoAuthor"> <?php $users = get_users(array('who' => 'authors')); /** @var WP_User $user */ foreach ($users as $user) { $selected = get_current_user_id() === (int) $user->data->ID ? 'selected' : ''; printf('<option value="%s" %s>%s</option>', $user->data->ID, $selected, $user->data->user_nicename); } ?> </select> </label> <label for="autoStatus"> Status: <select name="autoStatus" id="autoStatus"> <option value="publish">Veröffentlicht</option> <option value="draft">Entwurf</option> </select> </label> Age: <label for="autoFsk18"><input type="radio" name="autoFsk" id="autoFsk18" value="18" checked /> 18</label> <label for="autoFsk16"><input type="radio" name="autoFsk" id="autoFsk16" value="16" /> 16</label> <label for="autoDescription"> Beschreibung importieren <select name="autoDescription" id="autoDescription"> <option value="1">Ja</option> <option value="0">Nein</option> </select> </label> <label for="autoCategories">Importieren in Kategorie: </label> <?php $args = array( 'show_option_all' => '', 'show_option_none' => '', 'option_none_value' => '-1', 'orderby' => 'ID', 'order' => 'ASC', 'show_count' => 0, 'hide_empty' => 0, 'child_of' => 0, 'exclude' => '', 'echo' => 1, 'selected' => 0, 'hierarchical' => 0, 'name' => 'cat', 'id' => 'autoCategories', 'class' => 'postform', 'depth' => 0, 'tab_index' => 0, 'taxonomy' => 'category', 'hide_if_empty' => false, 'value_field' => 'term_id', ); wp_dropdown_categories($args); ?> <label for="autoAnzahl"> Anzahl pro Import: <input type="number" name="autoAnzahl" id="autoAnzahl" min="1" max="30" value="30"> </label> <?php submit_button('Ausgewählte importieren', 'primary', 'autoSubmit', false); ?> <div class="spinner" style="float: none;;"></div> <table id="autolist" class="widefat"> <tr> <th>Tag</th> <th>Darsteller</th> <th>Author</th> <th>Status</th> <th>Age</th> <th>Beschreibung importieren</th> <th>Kategorie</th> <th>Aktiv</th> <th>Anzahl pro Import</th> <th>Letzter Update</th> <th>Gesamt Import</th> <th>Action</th> </tr> </table> </div> </div> </div>
[-] vxcash-visitx-host-display.php
[edit]
[-] vxcash-debug-display.php
[edit]
[-] vxcash-pornme-video-display.php
[edit]
[-] vxcash-admin-display.php
[edit]
[+]
..
[-] vxcash-visitx-video-display.php
[edit]