HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership.net (cms)/modules/News/action.approvearticle.php
<?php
if( !isset($gCms) ) exit();
if( !$this->CheckPermission('Approve News') )
  {
    exit();
  }

if( !isset($params['approve']) || !isset($params['articleid']) )
  {
    die('missing parameter, this should not happen');
  }
$articleid = (int)$params['articleid'];
$search =& $this->GetModuleInstance('Search');
$status = '';
$uquery = "UPDATE ".cms_db_prefix()."module_news SET status = ? WHERE news_id = ?";
switch( $params['approve'] )
  {
  case 0:
    $status = 'draft';
    break;
  case 1:
    $status = 'published';
    break;
  default:
    die('unknown value for approve parameter, I do not know what to do with this');
    break;

  }

// Get the record
if( is_object($search) )
  {
    if( $status == 'draft' )
      {
	$search->DeleteWords($this->GetName(),$articleid,'article');
      }
    else if( $status == 'published' )
      {
	$query = 'SELECT * FROM '.cms_db_prefix().'module_news WHERE news_id = ?';;
	$article = $db->GetRow($query,array($articleid));
	if( !$article ) return;
	
	$useexp = 0;
	$t_end = time() + 3600; // just for the math
	if( $article['end_time'] != "" )
	  {
	    $useexp = 1;
	    $t_end = $db->UnixTimeStamp($article['end_time']);
	  }
	
	if( $t_end > time() || $this->GetPreference('expired_searchble',1) == 1 )
	  {
	    $text = $article['news_data'] . ' ' . $article['summary'] . ' ' . $article['news_title'] . ' ' . $article['news_title'];
	    $query = 'SELECT value FROM '.cms_db_prefix().'module_news_fieldvals WHERE news_id = ?';
	    $flds = $db->GetArray($query,array($articleid));
	    if( is_array($flds) )
	      {
		for( $i = 0; $i < count($flds); $i++ )
		  {
		    $text .= ' '.$flds[$i]['value'];
		  }
	      }

	    $search->AddWords($this->GetName(), $articleid, 'article', $text, 
			      ($useexp == 1 && $this->GetPreference('expired_searchable',0) == 0) ? $t_end : NULL);
	    
	  }
      }
  }

      
$db->Execute($uquery,array($status,$articleid));
$params = array('active_tab'=>'articles');
$this->Redirect($id,'defaultadmin',$returnid,$params);
?>