1

我认为问题出在我的 xml 中。

<?xml version="1.0" encoding="UTF-8"?>
<extension version="2.5" type="plugin" group="content">
   <install>
    <name>Content - eya</name>
    <author>eya</author>
    <creationDate>February 2013</creationDate>
    <copyright>(C) 2013 Open Source Matters. All rights reserved.</copyright>
    <license>GNU General Public License version 2 or later; see LICENSE.txt</license>
    <authorEmail>anigag@grzeit.com</authorEmail>
    <authorUrl>www.eya.com</authorUrl>
    <version>2.5.0</version>
    <description>Adds eya plugin ot your site</description>
    <files>
     <filename plugin="eya">eya.php</filename>
   </files>
   </install>

   <administration >
       <filename>admin.php</filename>
   </administration>
</extension>

这是我执行内容的主要 php 文件:eya.php。

我有另一个文件(admin.php),它从 eya.php 获取 2 个会话变量并将它们放在 iframe 中。有两个问题。一个是我不知道 eya.php 是否每次都在 admin.php 之前运行(或者至少一次设置会话变量)。第二个问题是我不知道如何只显示 admin.php 而没有别的。

4

1 回答 1

0

为您的插件构建一个管理界面只需将配置部分添加到您的 xml

<config>
   <fields name="params">
       <fieldset name="basic">
           <field name="testfield"    type="text" default="mytest" label="field_label" description="field_description" />
       </fieldset>
   </fields>
</config>

但我没有得到你的 admin.php/eya.php 的部分

于 2013-02-11T15:01:07.457 回答