<?php
//
// CK-ERP -- Copyright (C) 2004 - 2010 Wu Chiu Kay
// ------------------------------------------------------
// This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
//
// commcodedelete.php 0.30.1 2010/06/30 C K Wu
$app = 'ck-hr' ;
$tran = 'commcode' ;
require_once('../ck-api/ckapi.inc.php') ;
$ckapi['params'] = array( 'pre' => $pre ,
'app' => $app ,
'class' => $tran ,
'tran' => $tran ,
'table' => $pre.'category' ,
'uniqueflds' => array('commcat','name') );
$msg1 = exapi_lang('Communication channel codes are designed to be permanent items.') ;
$msg2 = exapi_lang('Normally communication channel codes should not be modified/deleted.') ;
$ckapi['phrases'] = array('lang_title' => exapi_lang('Delete %1',exapi_lang('Communication Channel Code')) ,
'lang_post' => exapi_lang('Update %1',exapi_lang('Communication Channel Code')) ,
'lang_tran' => exapi_lang('Communication Channel Code') ,
'message' => $msg1.' '.$msg2 );
$ckapi['tables']['parents'] = array($pre.'category' => '' ) ;
$ckapi['buttons'] = array( 'post' => '' ) ;
$proc1 = newobj('ck-api','process1') ;
$proc1->process1_delete() ;
ck_footer() ;
?>