Jump to content
  • 0

почему onContentPrepare не срабатывает?


d0ublezer0
 Share

Question

Пытаюсь подружиться с разработкой плагинов, пишу свой первый "Hello world" под J3
И не работает, зараза.

Не вызывается событие onContentPrepare и всё тут
от отчаяния уже сократил весь код в надежде выявить ошибку, но так и не добился результата.
Плагин установлен, активирован и вызывается. Но обработку не делает.
А по идее, должен (в текущей приложенной редакции) полностью заменять текст материала на слово "fluid"Всё же сделано по инструкциям, где я ошибся?
Помогите пожалуйста, мозг отказывается дальше думать..


contentfluid.php

<?php
defined('_JEXEC') or die;
jimport('joomla.plugin.plugin');

class plgContentFluid extends JPlugin
{
    public function onContentPrepare( $context, &$article, &$params, $page = 0 )
    {
        $article->text = "fluid";
        return true;
    }
}
?>

contentfluid.xml

<?xml version="1.0" encoding="utf-8"?>
<extension version="3.2" type="plugin" group="content" method="upgrade">
    <name>Content Fluid</name>
    <author>d0ublezer0</author>
    <version>1</version>
    <files>
        <filename plugin="contentfluid">contentfluid.php</filename>
    </files>
    <config>
        <fields name="params">
            <fieldset name="basic">
                <field
                    name="default_column_class"
                    type="text"
                    label="Стандартный класс колонки"
                    default="col-md-12"
                    >
                </field>
            </fieldset>
        </fields>
    </config>
</extension>


И архив с плагином приложен
Выручайте, ребята

 

contentfluid [2016-10-06@16-35-34].zip

Edited by d0ublezer0
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Добрый день. Попытался повторить ваш плагин - не срабатывает с заменой

"class plgСontentFluid extends JPlugin"

на "class plgContentСontentFluid extends JPlugin"

 

В чем может быть дело?

Edited by VRV
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy