View Single Post
  #3  
Old 11-11-2010, 09:52 PM
leitel leitel is offline
 
Join Date: Mar 2003
Location: Costa Rica
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I need to import a number of articles. I am trying to hack together a quick function. What follows is my initial attempt. Is there a more elegant approach?

PHP Code:
<?php
define
('VB_PRODUCT''vbcms');
define('VB_ENTRY'1);
define('VB_ROUTER_SEGMENT''content');
define('GET_EDIT_TEMPLATES''picture');
define('CMS_SCRIPT'true);
define('THIS_SCRIPT''vbcms');
define('FRIENDLY_URL_LINK''vbcms');


// here I commented out:
// print_output(vB_Router::getResponse());
require_once('vb/_bootstrap.php');

// here I extended
// class whip_vBCms_Content_Article extends vBCms_Content_Article
require_once('_whip_vBCms_Content_Article.php');

$vBArticle = new whip_vBCms_Content_Article();

$contenttypeid "18";
$sectionid 1;
$parentnodeid 1;
vB::$vbulletin->GPC_exists['parentnode'] = true;
vB::$vbulletin->GPC_exists['sectionid'] = true;
vB::$vbulletin->GPC['sectionid'] = $sectionid;
vB::$vbulletin->GPC_exists['new_contenttype'] = true;
vB::$vbulletin->GPC['parentnode'] = $parentnodeid;
try
{
    
$nodedm = new vBCms_DM_Article();
    
// create content handler
    
$content vBCms_Content::create(vB_Types::instance()->getContentTypePackage($contenttypeid), vBCms_Types::instance()->getContentTypeClass($contenttypeid));


    
// insert default content for the contenttype and get the new contentid

    
$content->setParentNode(vB::$vbulletin->GPC['sectionid']);

    
$contentid $content->createDefaultContent($nodedm);
}
catch (
vB_Exception $e)
{
    throw (new 
vB_Exception_DM('Could not create default content.  Exception thrown with message: \'' htmlspecialchars_uni($e->getMessage()) . '\''));
}

// Create new content node
$nodedm->set('contenttypeid'$contenttypeid);
$nodedm->set('contentid'$contentid);
$nodedm->set('parentnode'$sectionid);
$nodedm->set('title', (vB::$vbulletin->GPC_exists['section_title']?
    
vB::$vbulletin->GPC['section_title'] : vB::$vbulletin->GPC['section_title']) );


//allow child nodes to set the author. This is necessary when we
//promote a post
if (! $nodedm->getSet('userid'))
{
    
$nodedm->set('userid'vB::$vbulletin->userinfo['userid']);
}
$nodedm->setField('title''larry');
if (!(
$nodeid $nodedm->save()))
{
    throw (new 
vB_Exception_DM('Could not create new node for content: ' print_r($nodedm->getErrors())));
}


$vBArticle->createDefaultContent($nodedm);



vB_Cache::instance()->event('section_nav_' vB::$vbulletin->GPC['sectionid']);
vB_Cache::instance()->event('sections_updated');
vB_Cache::instance()->event('articles_updated');
vB_Cache::instance()->cleanNow();



echo 
'';
I know this is a bit of a slop job but just trying to gen something to get the ball rolling.

Thank you
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01137 seconds
  • Memory Usage 1,814KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete