CodeGenerator/Php/File.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework

LICENSE

This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.

Category
Zend  
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_CodeGenerator  
Subpackage
PHP  
Version
$Id: File.php 24593 2012-01-05 20:35:02Z matthew $  

\Zend_CodeGenerator_Php_File

Package: Zend\CodeGenerator
Parent(s)
\Zend_CodeGenerator_Php_Abstract < \Zend_CodeGenerator_Abstract
Category
Zend  
Copyright
Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Constants

>VConstant  LINE_FEED = "\n"
inherited
Line feed to use in place of EOL
Inherited from: \Zend_CodeGenerator_Php_Abstract::LINE_FEED

Properties

>VPropertyprotectedstring $_body = null
Default valuenullDetails
Type
string
>VPropertyprotectedarray $_classes = array()
Default valuearray()Details
Type
array
>VPropertyprotected\Zend_CodeGenerator_Php_Docblock $_docblock = null
Default valuenullDetails
Type
\Zend_CodeGenerator_Php_Docblock
>VPropertyprotectedarray $_fileCodeGenerators = array()
static

Array of Zend_CodeGenerator_Php_File

Default valuearray()Details
Type
array
>VPropertyprotectedstring $_filename = null
Default valuenullDetails
Type
string
>VPropertyprotectedint|string $_indentation = ' '
Default value' 'Details
Type
int | string
Inherited_from
\Zend_CodeGenerator_Php_Abstract::$$_indentation  
>VPropertyprotectedbool $_isSourceDirty = true
Default valuetrueDetails
Type
bool
Inherited_from
\Zend_CodeGenerator_Php_Abstract::$$_isSourceDirty  
>VPropertyprotected$_markerClass = '/* Zend_CodeGenerator_Php_File-ClassMarker: {?} */'
static
Default value'/* Zend_CodeGenerator_Php_File-ClassMarker: {?} */'Details
Type
n/a
>VPropertyprotected$_markerDocblock = '/* Zend_CodeGenerator_Php_File-DocblockMarker */'
static
Default value'/* Zend_CodeGenerator_Php_File-DocblockMarker */'Details
Type
n/a
>VPropertyprotected$_markerRequire = '/* Zend_CodeGenerator_Php_File-RequireMarker: {?} */'
static
Default value'/* Zend_CodeGenerator_Php_File-RequireMarker: {?} */'Details
Type
n/a
>VPropertyprotectedarray $_requiredFiles = array()
Default valuearray()Details
Type
array

Methods

methodpublic__construct(array $options = array()) : void
Parameters
NameTypeDescription
$optionsarray
methodpublic__toString() : string
finalinherited

__toString() - casting to a string will in turn call generate()

Inherited from: \Zend_CodeGenerator_Abstract::__toString()\Zend_CodeGenerator_Php_Abstract::__toString()
Returns
TypeDescription
string
methodprotected_init() : void
inherited

_init() - this is called before the constuctor

Inherited from: \Zend_CodeGenerator_Abstract::_init()\Zend_CodeGenerator_Php_Abstract::_init()
methodprotected_prepare() : void
inherited

_prepare() - this is called at construction completion

Inherited from: \Zend_CodeGenerator_Abstract::_prepare()\Zend_CodeGenerator_Php_Abstract::_prepare()
methodpublicfromReflectedFileName(string $filePath, bool $usePreviousCodeGeneratorIfItExists = true, bool $includeIfNotAlreadyIncluded = true) : \Zend_CodeGenerator_Php_File
static

fromReflectedFileName() - use this if you intend on generating code generation objects based on the same file.

This will keep previous changes to the file in tact during the same PHP process

Parameters
NameTypeDescription
$filePathstring
$usePreviousCodeGeneratorIfItExistsbool
$includeIfNotAlreadyIncludedbool
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicfromReflection(\Zend_Reflection_File $reflectionFile) : \Zend_CodeGenerator_Php_File
static

fromReflection()

Parameters
NameTypeDescription
$reflectionFile\Zend_Reflection_File
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicgenerate() : string

generate()

Returns
TypeDescription
string
methodpublicgetBody() : string

getBody()

Returns
TypeDescription
string
methodpublicgetClass(string $name = null) : \Zend_CodeGenerator_Php_Class

getClass()

Parameters
NameTypeDescription
$namestring
Returns
TypeDescription
\Zend_CodeGenerator_Php_Class
methodpublicgetClasses() : array

getClasses()

Returns
TypeDescription
arrayArray of Zend_CodeGenerator_Php_Class
methodpublicgetDocblock() : \Zend_CodeGenerator_Php_Docblock

Get docblock

Returns
TypeDescription
\Zend_CodeGenerator_Php_Docblock
methodpublicgetFilename() : string

getFilename()

Returns
TypeDescription
string
methodpublicgetIndentation() : string | int
inherited

getIndentation()

Inherited from: \Zend_CodeGenerator_Php_Abstract::getIndentation()
Returns
TypeDescription
string | int
methodpublicgetRequiredFiles() : array

getRequiredFiles()

Returns
TypeDescription
array
methodpublicgetSourceContent() : string
Returns
TypeDescription
string
methodpublicisSourceDirty() : bool

isSourceDirty()

Returns
TypeDescription
bool
methodpublicregisterFileCodeGenerator( $fileCodeGenerator,  $fileName = null) : void
static

Parameters
NameTypeDescription
$fileCodeGenerator
$fileName
methodpublicsetBody(string $body) : \Zend_CodeGenerator_Php_File

setBody()

Parameters
NameTypeDescription
$bodystring
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetClass(\Zend_CodeGenerator_Php_Class | array $class) : \Zend_CodeGenerator_Php_File

setClass()

Parameters
NameTypeDescription
$class\Zend_CodeGenerator_Php_Class | array
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetClasses(array $classes) : \Zend_CodeGenerator_Php_File

setClasses()

Parameters
NameTypeDescription
$classesarray
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetConfig(\Zend_Config $config) : \Zend_CodeGenerator_Abstract
Parameters
NameTypeDescription
$config\Zend_Config
Returns
TypeDescription
\Zend_CodeGenerator_Abstract
methodpublicsetDocblock(\Zend_CodeGenerator_Php_Docblock | array | string $docblock) : \Zend_CodeGenerator_Php_File

setDocblock() Set the docblock

Parameters
NameTypeDescription
$docblock\Zend_CodeGenerator_Php_Docblock | array | string
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetFilename(string $filename) : \Zend_CodeGenerator_Php_File

setFilename()

Parameters
NameTypeDescription
$filenamestring
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetIndentation(string | int $indentation) : \Zend_CodeGenerator_Php_Abstract
inherited

setIndentation()

Inherited from: \Zend_CodeGenerator_Php_Abstract::setIndentation()
Parameters
NameTypeDescription
$indentationstring | int
Returns
TypeDescription
\Zend_CodeGenerator_Php_Abstract
methodpublicsetOptions(array $options) : \Zend_CodeGenerator_Abstract
Parameters
NameTypeDescription
$optionsarray
Returns
TypeDescription
\Zend_CodeGenerator_Abstract
methodpublicsetRequiredFiles(array $requiredFiles) : \Zend_CodeGenerator_Php_File

setRequiredFiles

Parameters
NameTypeDescription
$requiredFilesarray
Returns
TypeDescription
\Zend_CodeGenerator_Php_File
methodpublicsetSourceContent(string $sourceContent) : void
Parameters
NameTypeDescription
$sourceContentstring
methodpublicsetSourceDirty(bool $isSourceDirty = true) : \Zend_CodeGenerator_Php_Abstract
inherited

setSourceDirty()

Inherited from: \Zend_CodeGenerator_Php_Abstract::setSourceDirty()
Parameters
NameTypeDescription
$isSourceDirtybool
Returns
TypeDescription
\Zend_CodeGenerator_Php_Abstract
methodpublicwrite() : void

Documentation was generated by phpDocumentor 2.0.0a12.