58 $this->PageCSS =
get_package(
'page::page_css' ,
'last' , __FILE__ );
102 $this->PageCSS->add_stylesheet(
"{http_host}/$Path/res/css/pmsg.css" ,
true );
104 $this->PageCSS->add_javascript(
"{http_host}/$Path/include/js/pmsg.js" );
106 catch( Exception $e )
130 $CachedFS =
get_package(
'cached_multy_fs' ,
'last' , __FILE__ );
131 $String =
get_package(
'string' ,
'last' , __FILE__ );
132 $SecurityParser =
get_package(
'security::security_parser' ,
'last' , __FILE__ );
134 $Form = $CachedFS->get_template( __FILE__ ,
'feedback.tpl' );
136 $Record = $SecurityParser->parse_http_parameters(
'message:string,allow_not_set' );
138 $Form = $String->print_record( $Form , $Record );
140 $this->Output = $Form;
142 catch( Exception $e )
174 $ContextSet =
get_package(
'gui::context_set' ,
'last' , __FILE__ );
176 $ContextSet->add_context( dirname( __FILE__ ).
'/conf/cfcx_list_outgoing' );
178 $ContextSet->add_context( dirname( __FILE__ ).
'/conf/cfcx_list_deleted' );
180 $ContextSet->add_context( dirname( __FILE__ ).
'/conf/cfcx_feedback' );
182 $ContextSet->add_context( dirname( __FILE__ ).
'/conf/cfcx_solid_control' );
184 $ContextSet->execute( $Options , $this , __FILE__ );
186 return( $this->Output );
188 catch( Exception $e )