I would like to know what is the code to get links "Link A" or "Link B" found in the panel to create an article, maybe you can enlighten me.

Image for example http://goo.gl/v9jXU2

有帮助吗?

解决方案

In article model there is a function called getItem($pk) where $pk is article id.

File: components\com_content\models\article.php

Call this function with passing article id. this will return all article related data.

In result you can find links "Link A" or "Link B" in urls variable like below:

$result = $model->getItem($articleId);

$result->urls contains information related to links "Link A" or "Link B". json_decode this data and use accordingly.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top