Overview

Packages

  • tipy

Classes

  • Tipy
  • TipyApp
  • TipyCli
  • TipyCliSession
  • TipyConfig
  • TipyController
  • TipyCookie
  • TipyDAO
  • TipyEnv
  • TipyFlash
  • TipyInflector
  • TipyInput
  • TipyIOWrapper
  • TipyLogger
  • TipyMailer
  • TipyModel
  • TipyOutput
  • TipyRequest
  • TipySession
  • TipyTestCase
  • TipyTestRunner
  • TipyView

Exceptions

  • AssertionFailedException
  • CompileErrorException
  • CompileWarningException
  • CoreErrorException
  • CoreWarningException
  • DeprecatedException
  • NoMethodException
  • NoticeException
  • ParseException
  • RecoverableErrorException
  • StrictException
  • TipyDaoException
  • TipyException
  • TipyModelException
  • TipyRollbackException
  • TipyValidationException
  • UserDeprecatedException
  • UserErrorException
  • UserNoticeException
  • UserWarningException
  • WarningException
  • Overview
  • Package
  • Class
  • Deprecated
  • Todo

Class TipyInput

Represents input data

By default it is a TipyIOWrapper around $_REQUEST superglobal

class MyController extends TipyController {
    public function index() {
        $firstName = $this->in->get('first_name');
        // or by shortcut
        $lastName = $this->in('last_name');
    }
}
TipyIOWrapper
Extended by TipyInput
Package: tipy
Located at src/TipyInput.php
Methods summary
public
# __construct( )

Construct TipyInput instance from $_REQUEST

Construct TipyInput instance from $_REQUEST

Overrides

TipyIOWrapper::__construct()
Methods inherited from TipyIOWrapper
bind(), clear(), get(), getAll(), set()
tipy API documentation generated by ApiGen