Linker in admin

Open to all! Ask other shopowners for help.
Post Reply
User avatar
Pierre_P
Contributor
Posts: 144
Joined: Fri Mar 12, 2021 5:06 am
Phoenix Version: v1.1.0.6
Has thanked: 21 times
Been thanked: 11 times

Linker in admin

Post by Pierre_P »

In admin i need to update 2 addons, so far so good - almost.

I have 2 addons that uses $GLOBALS['Linker']->build for creating links in admin side
Example:

Code: Select all

= $GLOBALS['Linker']->build($productURL, $productParam . $row->id)
How to update this in the newest version of Phoenix?


Join The Code Co-op to get access to your library in the Code Co-op Forum
heatherbell
Senior Contributor
Posts: 2540
Joined: Mon Oct 07, 2019 4:39 am
Phoenix Version:
Has thanked: 35 times
Been thanked: 243 times

Re: Linker in admin

Post by heatherbell »

Pierre_P wrote: Sun Jul 28, 2024 6:23 am I have 2 addons that uses $GLOBALS['Linker']->build for creating links in admin side
Links to admin pages use $GLOBALS['Admin']->link
Examples: https://github.com/search?q=repo%3ACE-P ... &type=code
User avatar
Pierre_P
Contributor
Posts: 144
Joined: Fri Mar 12, 2021 5:06 am
Phoenix Version: v1.1.0.6
Has thanked: 21 times
Been thanked: 11 times

Re: Linker in admin

Post by Pierre_P »

heatherbell wrote: Sun Jul 28, 2024 6:53 am
Pierre_P wrote: Sun Jul 28, 2024 6:23 am I have 2 addons that uses $GLOBALS['Linker']->build for creating links in admin side
Links to admin pages use $GLOBALS['Admin']->link
Examples: https://github.com/search?q=repo%3ACE-P ... &type=code
Thanks @heatherbell
I need to use the catalog links appose to $GLOBALS['Admin'] links
heatherbell
Senior Contributor
Posts: 2540
Joined: Mon Oct 07, 2019 4:39 am
Phoenix Version:
Has thanked: 35 times
Been thanked: 243 times

Re: Linker in admin

Post by heatherbell »

Pierre_P wrote: Sun Jul 28, 2024 8:43 am I need to use the catalog links appose to $GLOBALS['Admin'] links
In that case, try: $GLOBALS['Admin']->catalog


Join The Code Co-op to get access to your library in the Code Co-op Forum
Post Reply