1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

*** empty log message ***

This commit is contained in:
iad2003 2009-10-26 16:15:42 +00:00
parent 513dc49f33
commit 9532b4fc1e
4 changed files with 61 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,61 @@
<?php
if (!defined('e107_INIT'))
{
require_once("../../class2.php");
}
if(e107::isInstalled('metaweblog'))
{
echo "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
?>
<manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog">
<options>
<clientType>WordPress</clientType>
<supportsKeywords>Yes</supportsKeywords>
<supportsGetTags>Yes</supportsGetTags>
</options>
<weblog>
<serviceName>e107</serviceName>
<imageUrl>images/wlw/e107_icon_32.png</imageUrl>
<watermarkImageUrl>images/wlw/e107_icon_32_wat.png</watermarkImageUrl>
<homepageLinkText>View site</homepageLinkText>
<adminLinkText>Dashboard</adminLinkText>
<adminUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS ?>
]]>
</adminUrl>
<postEditingUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS."newspost.php?create.edit." ?>{post-id}
]]>
</postEditingUrl>
</weblog>
<buttons>
<button>
<id>0</id>
<text>Manage Comments</text>
<imageUrl>images/wlw/comments_32.png</imageUrl>
<clickUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS."comment.php" ?>
]]>
</clickUrl>
</button>
</buttons>
</manifest>
<?php
}
?>