× Requests and support related to jBackend.

Disable content plugin in article output?

  • jjnxpct
  • Topic Author
  • Offline
  • New Member
  • New Member
More
8 years 8 months ago #5191 by jjnxpct
Hi! Just playing around with the JBackend extension. It seems to work great!

A question: When I use the REST API to get an article I noticed that the content plugins are activated when the article content is retreived? We have the Regular Labs Email Protector plugin enabled. (www.regularlabs.com/extensions/emailprotector). Sot he JSON returned containes code produced by this plugin to 'hide' the e-mail link in the article text.

In the database content table the e-mail link is not changed, but in the JSON output from the RREST API url the e-mail link is changed by the email protector plugin.

The Article has this HTML content:
++++++++++++++++++++++
<p>Deze website wordt door Inxpact beheerd.</p>
<p>Op de online klantenportaal <a href="mijn.inxpact.nl" target="_blank">mijn.inxpact.nl zijn basisinstructies te vinden over het CMS gebruik.
Wanneer je daar (nog) geen accountgegevens voor hebt kun je die bij Inxpact aanvragen.


<p>Vragen? Bel met 038 - 23 02 969 of stuur een e-mail naar <a href="This email address is being protected from spambots. You need JavaScript enabled to view it." target="_self">This email address is being protected from spambots. You need JavaScript enabled to view it..


++++++++++++++++++++++

The JSON from the REST gives me this:

+++++++++++++++++++++++

p>Deze website wordt door Inxpact beheerd.</p>\r\n<p>Op de online klantenportaal <a href=\"http://mijn.inxpact.nl\" target=\"_blank\">mijn.inxpact.nl zijn basisinstructies te vinden over het CMS gebruik.
Wanneer je daar (nog) geen accountgegevens voor hebt kun je die bij Inxpact aanvragen.

\r\n

Vragen? Bel met 038 - 23 02 969 of stuur een e-mail naar .



++++++++++++++++++++++++++

Is there a way to get the content without being processed by Joomla content plugins?

Another question: I notice some '\r\n' was added to the content as well. Even with the mentioned cloaking plugin disabled.

Is that by design?

Kind regards,
Jip

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5193 by admin
Replied by admin on topic Disable content plugin in article output?
Hi Jip,
nice point from you. If you open the content plugin and jump at line 671 you will find:
        $response['content'] = (trim($article->fulltext) != '') ? $article->introtext . $article->fulltext : $article->introtext;
        $response['content'] = JHtml::_('content.prepare', $response['content']);

As you can see the second line "prepare" the content running the plugins. So you could simply change it as follow (I will do on the next version):
        $response['content_raw'] = (trim($article->fulltext) != '') ? $article->introtext . $article->fulltext : $article->introtext;
        $response['content'] = JHtml::_('content.prepare', $response['content_raw']);

In this way you will get raw and final content. I will probably add a plugin option to make content_raw optional (to avoid double response size when not needed), but your client will still work with content_raw.

About \r\n, this is the way to encode "return" and "new line" chars in the JSON payload. Don't worry about them.

Kind regards,
Luigi

Please Log in or Create an account to join the conversation.

More
8 years 8 months ago #5194 by admin
Replied by admin on topic Disable content plugin in article output?
Already implemented...
If interested, send an email at info(at)selfget.com and I will send you the preview of the next content plugin version

Kind regards,
Luigi

Please Log in or Create an account to join the conversation.

Time to create page: 0.161 seconds