Does anyone know of a plugin for modx that will show all the pages that link to each document ID or would I have to create my own?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could write a snippet for yourself. Use the code
$weblinkArray = $modx->getCollection('modWeblink',$criteria);where
$criteriais the set of criteria, restrictions or constraints you want to set, like$criteria = array('published' => 1,// this is optional, more parameters can be optionally added as well
)
This gives you an array of the documents that link. Further, you know how to access data of an array.