'', // auto-increment 'news_title' => '', 'news_sef' => '', 'news_body' => '', 'news_extended' => '', 'news_meta_keywords' => '', 'news_meta_description' => '', 'news_datestamp' => '', 'news_author' => '1', 'news_category' => '1', 'news_allow_comments' => '0', 'news_start' => '0', 'news_end' => '0', 'news_class' => '0', 'news_render_type' => '0', 'news_comment_total' => '0', 'news_summary' => '', 'news_thumbnail' => '', 'news_sticky' => '0' ); /* Fields which must be set up by the caller. */ var $mandatory = array( 'news_title', 'news_datestamp', 'news_author' ); // Constructor function __construct() { global $sql; $this->newsDB = new db; // Have our own database object to write to the news table } // Empty the news DB function emptyTargetDB($inc_admin = FALSE) { // leave existing // $this->newsDB->db_Delete('news'); } // Set a new default for a particular field function overrideDefault($key, $value) { // echo "Override: {$key} => {$value}
"; if (!isset($this->default[$key])) return FALSE; $this->default[$key] = $value; } // Returns an array with all relevant fields set to the current default function getDefaults() { return $this->default; } /** * Insert data into e107 DB * @param row - array of table data * @return integer, boolean - error code on failure, TRUE on success */ function saveData($row) { if(!$result = $this->newsDB->db_Insert('news',$row)) { return 4; } //if ($result === FALSE) return 6; return TRUE; } function getErrorText($errnum) // these errors are presumptuous and misleading. especially '4' . { $errorTexts = array( 0 => 'No error', 1 => 'Can\'t change main admin data', 2 => 'invalid field passed', 3 => 'Mandatory field not set', 4 => 'Entry already exists', 5 => 'Invalid characters in user or login name', 6 => 'Error saving extended user fields' ); if (isset($errorTexts[$errnum])) return $errorTexts[$errnum]; return 'Unknown: '.$errnum; } } ?>