Delphi for PHP

Kuruzslo képe

Sziasztok!

Segítséget kérnék egy Delphi for PHP-ben létrehozott tartalom beillesztéséhez. A Delphis programon belül működik a kód, de a Drupálba beillesztve csak a kódot látom viszont.

Erről lenne szó:

        //Includes
        require_once("vcl/vcl.inc.php");
        use_unit("forms.inc.php");
        use_unit("extctrls.inc.php");
        use_unit("stdctrls.inc.php");
 
        //Class definition
        class Unit1 extends Page
        {
               public $Label10 = null;
               public $Label9 = null;
               public $Label8 = null;
               public $Label7 = null;
               public $Label6 = null;
               public $ossz = null;
               public $fal = null;
               public $plafon = null;
               public $Label5 = null;
               public $Label4 = null;
               public $Label3 = null;
               public $Label2 = null;
               public $Label1 = null;
               public $Edit3 = null;
               public $Edit2 = null;
               public $Edit1 = null;
               public $Button1 = null;
 
 
               function Button1Click($sender, $params)
               {
             $this->Label6->Caption =
             ($this->Edit1->Text * $this->Edit2->Text);
 
             $this->Label7->Caption =
             ((($this->Edit1->Text + $this->Edit2->Text))*2)
             *$this->Edit3->Text;
 
             $this->Label8->Caption =
             ($this->Label6->Caption + $this->Label7->Caption);
             }
 
        }
 
        global $application;
 
        global $Unit1;
 
        //Creates the form
        $Unit1=new Unit1($application);
 
        //Read from resource file
        $Unit1->loadResource(__FILE__);
 
        //Shows the form
        $Unit1->show();

Az érintett php fájlokat bemásoltam a public_html könyvtárba.
Mit kell még tennem hogy működjön?

Simán a  echo "Hello, World!"; működik...

Előre is köszönöm a segítséget!

Drupal verzió: 
drifter képe

Mit értesz az alatt hogy Drupálba illesztve? Bemásoltad a PHP kódot egy node-ba? Vagy föltöltötted PHP file-ként?

0
0