Subversion Repositories wpShopGermany4

Rev

Rev 8195 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8195 Rev 8197
Line 2... Line 2...
2
 
2
 
3
	/**
3
	/**
4
	 * Template für das Anlegen/Bearbeiten einer Produktgruppe
4
	 * Template für das Anlegen/Bearbeiten einer Produktgruppe
5
	 */
5
	 */
6
 
6
 
7
    /** @var \wpsg\productgroup|null $oProductgroup */
7
    /** @var wpsg_productgroup|null $oProductgroup */
8
    $oProductgroup = null;
8
    $oProductgroup = null;
9
 
9
 
10
    if (intval($_REQUEST['edit_id']??0) > 0) {
10
    if (intval($_REQUEST['edit_id']??0) > 0) {
11
 
11
 
12
        $oProductgroup = wpsg\productgroup::getInstance(intval($_REQUEST['edit_id']));
12
        $oProductgroup = wpsg_productgroup::getInstance(intval($_REQUEST['edit_id']));
13
 
13
 
14
    }
14
    }
15
 
15
 
16
?>
16
?>
17
 
17