在 ATK4 中,如何使用模板创建除 html 之外的文件类型?

发布于 2024-12-10 07:43:07 字数 259 浏览 0 评论 0原文

我的原始应用程序中不使用 atk4 的最后剩余部分是在 php 中创建的动态 css 文件并输出 css 标头。宽度是根据 mysql 中的数据确定的,需要确保拖动笔记时屏幕不会不断调整大小。

如果我想创建一个具有类似于 html 模板的模板结构的 .css 文件,我应该从哪里开始,这样我就可以使用像

.fullwidth {
   width:<?$width?>; 
}

提前感谢这样的 css 定义。

The last remaining part of my original application that doesnt use atk4 is the dynamic css files created in php and outputing a css header. The width is determined based on the data in mysql and is needed to ensure the screen is not constantly resizing when notes are dragged around.

Where should i start if i want to create a .css file that has a template structure similar to the html templates so i can use a css definition like

.fullwidth {
   width:<?$width?>; 
}

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月牙弯弯 2024-12-17 07:43:07

首先,您需要通过 .htaccess 重写 CSS 文件。创建一个专门用于在您的系统上创建 CSS 的页面。

RewriteRule ^css/dynamic\.css$  index.php?page=css

接下来在 page/css.php 中创建类

class page_css extends Page {
    function init(){
        parent::init();
        echo ".fullwidth { ... } ";
        exit;
    }
}

在这种情况下,模板没有太大帮助,但如果您想使用模板,请记住 echo $template->render();并退出。

First, you'll need to re-write your CSS files through .htaccess. Create a page dedicated for creating the CSS on your system.

RewriteRule ^css/dynamic\.css$  index.php?page=css

Next create class inside page/css.php

class page_css extends Page {
    function init(){
        parent::init();
        echo ".fullwidth { ... } ";
        exit;
    }
}

In this case templates are not much of a help, but if you want to use one, remember to echo $template->render(); and exit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文