Exponent v2.7.2

Errors

Table of Contents

framework/core/forms/fakeform.php 1
framework/core/models/expRecord.php 1
framework/core/subsystems/database/mysqli.php 2
framework/core/subsystems/database/odbc.php 2
framework/core/subsystems/database/sqlsvr.php 2
framework/core/subsystems/expCore.php 2
framework/core/subsystems/expDatabase.php 2
framework/core/subsystems/expHtmlToPDF.php 1
framework/core/subsystems/expPermissions.php 7
framework/core/subsystems/expSession.php 2
framework/modules/file/connector/elFinderVolumeExponent.class.php 3
framework/plugins/compiler.switch.php 1

fakeform.php

Type Line Description
ERROR 0 Tag "param" with body "@param null/integer $form_id" has error "\null/integer" is not a valid Fqsen.

expRecord.php

Type Line Description
ERROR 0 Tag "uses" with body "@uses [db_type]::getDataDefinition() Builds a data definition from existing table." has error "\[db_type]" is not a valid Fqsen.

mysqli.php

Type Line Description
ERROR 0 Tag "return" with body "@return array'" has error "\array'" is not a valid Fqsen.
ERROR 0 Tag "return" with body "@return object/null|void" has error "\object/null" is not a valid Fqsen.

odbc.php

Type Line Description
ERROR 0 Tag "return" with body "@return array'" has error "\array'" is not a valid Fqsen.
ERROR 0 Tag "return" with body "@return object/null|void" has error "\object/null" is not a valid Fqsen.

sqlsvr.php

Type Line Description
ERROR 0 Tag "return" with body "@return array'" has error "\array'" is not a valid Fqsen.
ERROR 0 Tag "return" with body "@return object/null|void" has error "\object/null" is not a valid Fqsen.

expCore.php

Type Line Description
ERROR 0 Tag "param" with body "@param bool/array $post" has error "\bool/array" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param bool/array $auth" has error "\bool/array" is not a valid Fqsen.

expDatabase.php

Type Line Description
ERROR 0 Tag "param" with body "@param resource/PDO $dbpdo Database handler" has error "\resource/PDO" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param * $val Value to bind" has error "\*" is not a valid Fqsen.

expHtmlToPDF.php

Type Line Description
ERROR 0 Tag "see" with body "@see <a href="http://code.google.com/p/wkhtmltopdf/">http://code.google.com/p/wkhtmltopdf/</a>" has error "\<a" is not a valid Fqsen.

expPermissions.php

Type Line Description
ERROR 0 Tag "param" with body "@param user/object $user the user to load permissions for." has error "\user/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param user/object $user The user to check permission on" has error "\user/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param user/object $user The user to grant the permission to" has error "\user/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param group/object $group The group to check" has error "\group/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param group/object $group The group to grant the permission to" has error "\group/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param user/object $user The user to remove all permissions from" has error "\user/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param group/object $group The group to remove all permissions from" has error "\group/object" is not a valid Fqsen.

expSession.php

Type Line Description
ERROR 0 Tag "param" with body "@param user/object $user The user object of the newly logged-in user. Uses id of 0 if not supplied." has error "\user/object" is not a valid Fqsen.
ERROR 0 Tag "param" with body "@param user/object $user" has error "\user/object" is not a valid Fqsen.

elFinderVolumeExponent.class.php

Type Line Description
ERROR 0 Tag "return" with body "@return array/null" has error "\array/null" is not a valid Fqsen.
ERROR 0 Tag "return" with body "@return array/null" has error "\array/null" is not a valid Fqsen.
ERROR 0 Tag "return" with body "@return array/null" has error "\array/null" is not a valid Fqsen.

compiler.switch.php

Type Line Description
ERROR 0 Tag "author" with body "@author Jeremy Pyne <jeremy.pyne@gmail.com> - Donations: Accepted via PayPal at the above address. - Updated: 02/10/2010 - Version 3.2 - File: smarty/plugins/compiler.switch.php - Licence: CC:BY/NC/SA http://creativecommons.org/licenses/by-nc-sa/3.0/ - Updates Version 2: Changed the break attribute to cause a break to be printed before the next case, instead of before this case. This way makes more sense and simplifies the code. This change in incompatible with code in from version one. This is written to support nested switches and will work as expected. Version 2.1: Added {/case} tag, this is identical to {break}. Version 3: Updated switch statment to support Smarty 3. This update is NOT backwards compatible but the old version is still maintained. Version 3.1: Added a prefilter to re-enable the shorthand {switch $myvar} support. To use the shorthand form you will need to add the following line to your code. $smarty->loadPlugin('smarty_compiler_switch'); Version 3.2: Fixed a bug when chaining multiple {case} statements without a {break}. Version 3.5: Updated to work with Smarty 3.0 release. (Tested and working with 3.0.5, no longer compatible with 3.0rcx releases.) Version 3.6: Updated to work with Smarty 3.1 release. (Tested and working on 3.1.3, No longer compatible with 3.0 releases.) - Bugs/Notes: Sample usage: <code> {foreach item=$debugItem from=$debugData} // Switch on $debugItem.type {switch $debugItem.type} {case 1} {case "invalid_field"} // Case checks for string and numbers. {/case} {case $postError} {case $getError|cat:"_ajax"|lower} // Case checks can also use variables and modifiers. {break} {default} // Default case is supported. {/switch} {/foreach} </code> Note in the above example that the break statements work exactly as expected. Also the switch and default tags can take the break attribute. If set they will break automatically before the next case is printed. Both blocks produce the same switch logic: <code> {case 1 break} Code 1 {case 2} Code 2 {default break} Code 3 </code> <code> {case 1} Code 1 {break} {case 2} Code 2 {default} Code 3 {break} </code> Finally, there is an alternate long hand style for the switch statments that you may need to use in some cases. <code> {switch var=$type} {case value="box" break} {case value="line"} {break} {default} {/switch} </code>" has error

Search results