<?php
/**
 * User: kristianhempel
 * Date: 09.04.13
 */
include("bootstrap.php");

/** @var $article oxarticle */
$article = oxNew('oxarticle');

// load not existing article
$article->load('ovr1da24ba44513657668ff559089e');

$article->assign(
    array(
        'oxstock' => '1',
    )
);
$article->getFieldData('oxartnum');
$article->getFieldData('oxprice');
$article->getFieldData('oxstock');

// load not existing module
/** @var $oModule oxmodule */
$oModule   = oxNew('oxmodule');
$oModule->load('idfsdcepdf');
$oModule->isActive();
