OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@1020 1ca29b6e-896d...
[nucleus-jp/nucleus-plugins.git] / NP_TrackBack / branches / DOM-branch / trackback / templates / ping.html
1 <?php global $manager; ?>
2 <h2>Manually ping another weblog</h2>
3
4 <form method="post" action="<?php echo $CONF['PluginURL'];?>trackback/index.php">
5
6     <input type="hidden" name="action" value="sendping" />
7     <input type="hidden" name="next" value="ping" />
8     <?php $manager->addTicketHidden(); ?>
9         
10     <table>
11         <tr>
12             <th colspan='2'>Manually Ping</th>
13         </tr>
14         <tr>
15             <td>Your URL</td>
16             <td>
17                 <input type="text" name="url" size="60" value="<?php echo htmlspecialchars($item['url']);?>" />
18             </td>
19         </tr>
20         <tr>
21             <td>Your Title</td>
22             <td>
23                 <input type="text" name="title" size="60" value="<?php echo htmlspecialchars($item['title']);?>" />
24             </td>
25         </tr>
26         <tr>
27             <td>Your Excerpt</td>
28             <td>
29                     <textarea name="excerpt" cols="40" rows="5"><?php echo $item['excerpt'];?></textarea>
30             </td>
31         </tr>
32         <tr>
33             <td>Your Blog Name</td>
34             <td>
35                 <input type="text" name="blog_name" size="60" value="<?php echo htmlspecialchars($item['blogname']);?>" />
36             </td>
37         </tr>
38         <tr>
39             <td>External Ping URL</td>
40             <td>
41                 <input type="text" value="" name="ping_url" size="60" />
42             </td>
43         </tr>
44         <tr>
45             <td>Send Ping</td>
46             <td><input type="submit" value="Send Ping" /></td>
47         </tr>
48     </table>
49
50 </form>