123456789101112131415161718 |
- <link rel="stylesheet" href="<?php echo $this->pluginDirUrl; ?>styles.css" type="text/css" />
- <div class="wrap">
- <?php echo screen_icon();?><h2>注册站点</h2>
- <?php
- $user = wp_get_current_user();
- $params = $this->packageOptions() + array(
- 'system' => 'wordpress',
- 'callback' => admin_url('admin.php?page=duoshuo'),
- 'user_key' => $user->ID,
- 'user_name' => $user->display_name,
- 'sync_log' => 1,
- );
- $adminUrl = is_ssl() ? 'https://' : 'http://';
- $adminUrl .= self::DOMAIN . '/connect-site/?'. http_build_query($params, null, '&')
- ?>
- <iframe id="duoshuo-remote-window" src="<?php echo $adminUrl;?>" style="width:100%;height:580px;"></iframe>
- </div>
|