mirror of
https://github.com/e107inc/e107.git
synced 2025-06-05 18:35:01 +02:00
Missing import files added.
This commit is contained in:
parent
1757cb54f9
commit
7e4397ed6b
130
e107_plugins/import/import_links_class.php
Normal file
130
e107_plugins/import/import_links_class.php
Normal file
@ -0,0 +1,130 @@
|
||||
<?php
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
*
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/import/import_user_class.php,v $
|
||||
* $Revision: 11315 $
|
||||
* $Date: 2010-02-10 10:18:01 -0800 (Wed, 10 Feb 2010) $
|
||||
* $Author: secretr $
|
||||
*/
|
||||
|
||||
/*
|
||||
Class intended to simplify importing of user information from outside.
|
||||
It ensures that each user record has appropriate defaults
|
||||
|
||||
To use:
|
||||
1. Create one instance of the class
|
||||
2. Call emptyUserDB() to delete existing users
|
||||
3. If necessary, call overrideDefault() as necessary to modify the defaults
|
||||
4. For each record:
|
||||
a) Call getDefaults() to get a record with all the defaults filled in
|
||||
b) Update the record from the source database
|
||||
c) Call saveUser($userRecord) to write the record to the DB
|
||||
*/
|
||||
|
||||
class links_import
|
||||
{
|
||||
var $pageDB = NULL;
|
||||
var $blockMainAdmin = TRUE;
|
||||
var $error;
|
||||
|
||||
var $defaults = array(
|
||||
// 'link_id' => '',
|
||||
'link_name' => '',
|
||||
'link_url' => '',
|
||||
'link_description' => '',
|
||||
'link_button' => '',
|
||||
'link_category' => 4,
|
||||
'link_order' => '',
|
||||
'link_parent' => '0',
|
||||
'link_open' => '0',
|
||||
'link_class' => '0',
|
||||
'link_function' => '',
|
||||
'link_sefurl' => ''
|
||||
|
||||
);
|
||||
|
||||
// Fields which must be set up by the caller.
|
||||
var $mandatory = array(
|
||||
'link_name', 'link_url'
|
||||
);
|
||||
|
||||
// Constructor
|
||||
function __construct()
|
||||
{
|
||||
global $sql;
|
||||
$this->pageDB = new db; // Have our own database object to write to the table
|
||||
}
|
||||
|
||||
|
||||
// Empty the DB - not necessary
|
||||
function emptyTargetDB($inc_admin = FALSE)
|
||||
{
|
||||
// $this->pageDB->db_Delete('page');
|
||||
}
|
||||
|
||||
|
||||
// Set a new default for a particular field
|
||||
function overrideDefault($key, $value)
|
||||
{
|
||||
// echo "Override: {$key} => {$value}<br />";
|
||||
if (!isset($this->defaults[$key])) return FALSE;
|
||||
$this->defaults[$key] = $value;
|
||||
}
|
||||
|
||||
|
||||
// Returns an array with all relevant fields set to the current default
|
||||
function getDefaults()
|
||||
{
|
||||
return $this->defaults;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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->pageDB->db_Insert('links',$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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
141
e107_plugins/import/import_news_class.php
Normal file
141
e107_plugins/import/import_news_class.php
Normal file
@ -0,0 +1,141 @@
|
||||
<?php
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
*
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/import/import_user_class.php,v $
|
||||
* $Revision: 11315 $
|
||||
* $Date: 2010-02-10 10:18:01 -0800 (Wed, 10 Feb 2010) $
|
||||
* $Author: secretr $
|
||||
*/
|
||||
|
||||
/*
|
||||
Class intended to simplify importing of user information from outside.
|
||||
It ensures that each user record has appropriate defaults
|
||||
|
||||
To use:
|
||||
1. Create one instance of the class
|
||||
2. Call emptyUserDB() to delete existing users
|
||||
3. If necessary, call overrideDefault() as necessary to modify the defaults
|
||||
4. For each record:
|
||||
a) Call getDefaults() to get a record with all the defaults filled in
|
||||
b) Update the record from the source database
|
||||
c) Call saveUser($userRecord) to write the record to the DB
|
||||
*/
|
||||
|
||||
class news_import
|
||||
{
|
||||
var $newsDB = NULL;
|
||||
var $blockMainAdmin = TRUE;
|
||||
var $error;
|
||||
|
||||
var $default = array(
|
||||
//'news_id' => '', // 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}<br />";
|
||||
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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
133
e107_plugins/import/import_page_class.php
Normal file
133
e107_plugins/import/import_page_class.php
Normal file
@ -0,0 +1,133 @@
|
||||
<?php
|
||||
/*
|
||||
* e107 website system
|
||||
*
|
||||
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
||||
* Released under the terms and conditions of the
|
||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||
*
|
||||
*
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/import/import_user_class.php,v $
|
||||
* $Revision: 11315 $
|
||||
* $Date: 2010-02-10 10:18:01 -0800 (Wed, 10 Feb 2010) $
|
||||
* $Author: secretr $
|
||||
*/
|
||||
|
||||
/*
|
||||
Class intended to simplify importing of user information from outside.
|
||||
It ensures that each user record has appropriate defaults
|
||||
|
||||
To use:
|
||||
1. Create one instance of the class
|
||||
2. Call emptyUserDB() to delete existing users
|
||||
3. If necessary, call overrideDefault() as necessary to modify the defaults
|
||||
4. For each record:
|
||||
a) Call getDefaults() to get a record with all the defaults filled in
|
||||
b) Update the record from the source database
|
||||
c) Call saveUser($userRecord) to write the record to the DB
|
||||
*/
|
||||
|
||||
class page_import
|
||||
{
|
||||
var $pageDB = NULL;
|
||||
var $blockMainAdmin = TRUE;
|
||||
var $error;
|
||||
|
||||
var $defaults = array(
|
||||
'page_id' => '',
|
||||
'page_title' => '',
|
||||
'page_sef' => '',
|
||||
'page_metakeys' => '',
|
||||
'page_metadscr' => '',
|
||||
'page_text' => '',
|
||||
'page_author' => 1,
|
||||
'page_datestamp' => '',
|
||||
'page_rating_flag' => '0',
|
||||
'page_comment_flag' => '0',
|
||||
'page_password' => '',
|
||||
'page_class' => '0',
|
||||
'page_ip_restrict' => '',
|
||||
'page_theme' => '',
|
||||
'page_template' => 'default'
|
||||
|
||||
);
|
||||
|
||||
// Fields which must be set up by the caller.
|
||||
var $mandatory = array(
|
||||
'page_title', 'page_datestamp', 'page_author', 'page_text'
|
||||
);
|
||||
|
||||
// Constructor
|
||||
function __construct()
|
||||
{
|
||||
global $sql;
|
||||
$this->pageDB = new db; // Have our own database object to write to the table
|
||||
}
|
||||
|
||||
|
||||
// Empty the DB - not necessary
|
||||
function emptyTargetDB($inc_admin = FALSE)
|
||||
{
|
||||
// $this->pageDB->db_Delete('page');
|
||||
}
|
||||
|
||||
|
||||
// Set a new default for a particular field
|
||||
function overrideDefault($key, $value)
|
||||
{
|
||||
// echo "Override: {$key} => {$value}<br />";
|
||||
if (!isset($this->defaults[$key])) return FALSE;
|
||||
$this->defaults[$key] = $value;
|
||||
}
|
||||
|
||||
|
||||
// Returns an array with all relevant fields set to the current default
|
||||
function getDefaults()
|
||||
{
|
||||
return $this->defaults;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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->pageDB->db_Insert('page',$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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
Loading…
x
Reference in New Issue
Block a user