Difference between revisions of "Zen Cart"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Miscellaneous)
Line 16: Line 16:
  
 
IS_ADMIN_FLAG
 
IS_ADMIN_FLAG
 +
 +
zen_admin_demo()
 +
 +
$type_handler = $zc_products->get_admin_handler($products->fields['products_type']);
 +
 +
foreach (zen_get_admin_menu_for_user() as $menuKey => $pages)
 +
 +
echo zen_draw_form($form_action, $type_admin_handler, 'cPath=' . $cPath . (isset($_GET['product_type']) ? '&product_type=' . $_GET['product_type'] : '') . (isset($_GET['pID']) ? '&pID=' . $_GET['pID'] : '') . '&action=' . $form_action . (isset($_GET['page']) ? '&page=' . $_GET['page'] : ''), 'post', 'enctype="multipart/form-data"');
 +
 +
$pagesByMenu = zen_get_admin_pages(FALSE);
 +
 +
$contents = array('form' => zen_draw_form('copy_to', $type_admin_handler, 'action=copy_to_confirm&cPath=' . $cPath . (isset($_GET['page']) ? '&page=' . $_GET['page'] : '')) . zen_draw_hidden_field('products_id', $pInfo->products_id));
  
 
== See also ==
 
== See also ==

Revision as of 12:51, 13 October 2015

Zen Cart is an online shopping management system.

(TO DO: expand, organize, cross-reference, illustrate.)

See also Learning Zen Cart (1).

Description

Zen Cart is PHP-based, using a MySQL database and HTML components.

Support is provided for numerous languages and currencies, and it is freely available under the GNU General Public License.

Zen Cart branched from osCommerce as a separate project in 2003. Beyond some aesthetic changes, the major differences between the two systems come from Zen Cart's architectural changes (for example, a template system) and additional included features in the core. The release of the 1.3.x series further differentiated Zen Cart by moving the template system from its historic tables-based layout approach to one that is largely CSS-based.

Miscellaneous

IS_ADMIN_FLAG

zen_admin_demo()

$type_handler = $zc_products->get_admin_handler($products->fields['products_type']);

foreach (zen_get_admin_menu_for_user() as $menuKey => $pages)

echo zen_draw_form($form_action, $type_admin_handler, 'cPath=' . $cPath . (isset($_GET['product_type']) ? '&product_type=' . $_GET['product_type'] : ) . (isset($_GET['pID']) ? '&pID=' . $_GET['pID'] : ) . '&action=' . $form_action . (isset($_GET['page']) ? '&page=' . $_GET['page'] : ), 'post', 'enctype="multipart/form-data"');

$pagesByMenu = zen_get_admin_pages(FALSE);

$contents = array('form' => zen_draw_form('copy_to', $type_admin_handler, 'action=copy_to_confirm&cPath=' . $cPath . (isset($_GET['page']) ? '&page=' . $_GET['page'] : )) . zen_draw_hidden_field('products_id', $pInfo->products_id));

See also

External links