Example #1
0
?>


<?php 
if (isset($_REQUEST['templates'])) {
    ?>
    <?php 
    if (is_array($_REQUEST['templates'])) {
        ?>
        <?php 
        foreach ($_REQUEST['templates'] as $k => $item) {
            ?>
            <h2>Installing template: <?php 
            print $item;
            ?>
 (for <em><?php 
            print $k;
            ?>
</em>)</h2>
            <textarea>
                <?php 
            $iudates = $update_api->install_template($item);
            d($iudates);
            ?>
            </textarea>
        <?php 
        }
        ?>
    <?php 
    }
}
Example #2
0
<?php

only_admin_access();
if (url_param('add_template')) {
    $install = url_param('add_template');
    $update_api = new \Microweber\Update();
    $result = $update_api->install_template($install);
    print_r($result);
} else {
    $update_api = new \Microweber\Update();
    $result = $update_api->browse();
}
// print_r($result);
?>
 browsen ew stuff
<?php 
if (isset($result['templates']) and is_array($result['templates']) == true) {
    foreach ($result['templates'] as $k => $item) {
        if (isset($item['name']) and isset($item['dir_name'])) {
            print $item['name'];
            ?>
<a href="<?php 
            print admin_url();
            ?>
view:updates__browse/add_template:<?php 
            print $item['dir_name'];
            ?>
" class="mw-ui-btn">
    <?php 
            _e("Install");
            ?>