X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   my own page like users.php (https://forum.x-cart.com/showthread.php?t=20522)

metinex 03-15-2006 02:58 AM

my own page like users.php
 
I working on the admin side to add my own page. I take users.php as a starting point.

I duplicated the file /admin/users.php to /admin/pricing.php

Within that file:
$smarty->assign("main","users"); ---> $smarty->assign("main","pricing");

Then I created the file /skin1/admin/main/pricing.tpl copying from /skin1/admin/main/users.tpl

When I display /admin/pricing.php in the browser I got:
Page not found!
The requested page does not exist or you are not allowed to access it!

What am I missing?

Jiser 03-15-2006 03:09 AM

Hi,

Please try:
Code:

func_display("main/pricing.tpl",$smarty);

Please check for further info BOOMERS info page: http://cart-lab.blogspot.com/2005/05/writing-your-own-x-cart-modifications.html

metinex 03-15-2006 03:16 AM

Thanks for the repley, but that tpl is supposed to be the main page's layout template. Isn't it?

BY the way in users.php i see that code
func_display("admin/home.tpl",$smarty);

Where is the admin/home.tpl by the way?

I've never seen file like that under an admin folder in Xcart files.

metinex 03-15-2006 03:26 AM

Hey that page has been helpful, I solved the issue:

in /skin1/common_templates.tpl

I needed to put
{elseif $main eq "pricing"}
{include file="admin/main/pricing.tpl"}


somewhere in the code.

But interestingly I still don't see any condition like {elseif $main eq "users"} in that file.

So how come users.php being displayed then? Weird...

metinex 03-15-2006 03:47 AM

Ok I found the following code in the code
{elseif $main eq "users"}
{include file="admin/main/users.tpl"}

in /skin1/single/home.tpl?


Why some of the variables in this file, some of them are in /skin1/common_templates.tpl?


All times are GMT -8. The time now is 05:44 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.