问题标签 [pyrocms-lex]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - PyroCMS 导航栏中的第三级导航
我在 PyroCMS 中制作第三级导航栏时遇到了一些麻烦,我没有两个级别可以正常工作,但由于某种原因,它不会让我浏览 {{ navigation }} 数组两次。
这是我目前拥有的:
我猜“孩子”不能循环两次,如果是这样,正确的方法是什么?
谢谢!
php - 从字符串中删除 lex 标记块
您好,我有这个 lex 解析器模板,其中包含一个我想要删除的回调标记,因为我得到了一个无限循环。
我尝试使用 php preg_replace
,但随后出现白屏。我要删除的标签是这种格式:
这是我在 preg_replace 的尝试:
但它不起作用。任何建议为什么?
codeigniter - 自定义 pyro cms -> css 和 js 不起作用
我想自定义主题在 addons->themes->myprojectname 我保留了 css,img,js,views,theme.php 并从 pyrocms 的控制面板激活了主题
1)在views->partials->meta.html中我保留了这样的
我的页面,即视图在模块中,但这个 css 并不适用于我的页面,而是页面。
!)这个页面不是pyro cms主题页面,它是.html页面重命名为.php并放置在视图中
pyrocms - 如何在 PyroCMS / Lex 中包含托管的 JS 文件?
要在我的主题中加载文件,我使用{{ theme:js file="bootstrap.min.js" }}
. 但是如果我想从 CDN 加载一些东西,比如http://code.jquery.com/jquery-1.9.1.js
.
我试过{{ theme:js file="http://code.jquery.com/jquery-1.9.1.js" }}
了,但错误出来了。
想法?
php - 不显示类别中的博客文章
我创建了一个页面,然后把这段代码
里面显示来自“成人”类别的帖子,但我什么也没得到。我有一个帖子,它在这个类别中是实时的。怎么了?我阅读博客插件文档还检查了包“PyroCMS\Core\Modules\Blog\Plugins”中的博客插件代码,但找不到失败的地方。同样与同一个问题有关,我可以对所有帖子进行分页吗?我需要一些帮助,因为我找不到问题所在
pyrocms - 如何使用 PyroCMS Lex 标签编写“if”语句?
这是我在循环中的“if”语句。有时描述会存在,有时则不会。但我得到的只是这个词LIKE
,而不是ME
描述实际存在的时候。
minify - 为什么 js 资产不会在生产中与 PyroCMS 结合/加载?
那是我的 JavaScript 代码,但是当我在生产中加载时,它不会加载script
标签。但是,system/cms/config/asset.php
如果我转为false asset_min
,asset_combine
则它会单独加载 JS 文件,而不会合并或缩小。
但我希望它结合并缩小。
帮助?
php - 数组中的 PyroCMS 标签
作为网站开发人员,我在工作中使用 CodeIgniter 和 PyroCMS。一些使用 Pyro 的时间比我长得多的同事经常使用 Pyro 标签。它们似乎非常有用,即使我还不知道它们是如何工作的。无论如何,我试图在 PHP 数组中使用标签,但 Pyro 似乎不喜欢那样。
有问题的代码:
我得到错误:
解析错误:语法错误,第 48 行 C:\repos\mit-eod\addons\shared_addons\modules\mit\views\history.php 中的意外“{”
错误位于 PHP 回显语句中的 php 代码行(第 5 行)。我可以确认它是该行的第三个左大括号,第一个在{{ mit_id }}
.
为什么会这样?
loops - 根据其 {{ name }}-tag 在 PyroCMS 中显示图像
我需要根据文件夹显示一些图像{{ name }}
。
我的文件名称如下所示:
- foo.jpg
- foo_blur.jpg
- 酒吧.png
- bar_blur.png
现在我需要对模糊图像做一些事情。这是我尝试过的,但没有成功:
目前它什么也不做。看来,strpos
回报总是如此false
。任何想法我做错了什么?
php - Pyrostreams Filter Table with Form
I am displaying data in a table using {{streams}}
and page types and would like to filter and sort the data.
There are no tags to automatically generate filters. However, I can auto generate a {{ form }} for inserting a stream record and - an input form is exactly the UI we need for a filter form.
How could I override the default input action of the form plugin to perform a filtering of my table data (stream)?
What is a good method of sorting the data? I see a PyroFilter plugin exists but not much documentation and no examples in the Pyro core as the plugin author suggests.
I love PyroCMS because of streams (and the amazingly compact and modular code), and gaining the ability to easily filter and sort would be remarkable. This just feels like exactly the sort of thing pyrostreams was built for because the UI components are already there.
Any help with this would be appreciated.