API17:JError::raiseNotice
From Joomla! Documentation
(Difference between revisions)
(Layout updates) |
(Updated to r1448:247ba8d88526) |
||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JError::raiseNotice|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JError::raiseNotice|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | public static | + | public static function raiseNotice ( |
| + | $code | ||
| + | $msg | ||
| + | $info=null | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 37: | Line 38: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' object $error The configured object | |
| − | object $error The configured object | + | * '''Defined''' on line 219 of libraries/joomla/error/error.php |
| − | + | * '''Since''' {{JVer|11.1 }} | |
| − | libraries/joomla/error/error.php | + | * '''Referenced by''' |
| − | * | + | ** [[JHtmlAccess::assetgroups/11.1|JHtmlAccess::assetgroups]] |
| − | + | ** [[JHtmlList::genericordering/11.1|JHtmlList::genericordering]] | |
| − | * [[JHtmlAccess::assetgroups/11.1|JHtmlAccess::assetgroups]] | + | ** [[JFormFieldRules::getInput/11.1|JFormFieldRules::getInput]] |
| − | * [[JHtmlList::genericordering/11.1|JHtmlList::genericordering]] | + | ** [[JHtmlMenu::linkoptions/11.1|JHtmlMenu::linkoptions]] |
| − | * [[JFormFieldRules::getInput/11.1|JFormFieldRules::getInput]] | + | ** [[JMail::Send/11.1|JMail::Send]] |
| − | * [[JHtmlMenu::linkoptions/11.1|JHtmlMenu::linkoptions]] | + | ** [[JInstallerLanguage::uninstall/11.1|JInstallerLanguage::uninstall]] |
| − | * [[JMail::Send/11.1|JMail::Send]] | + | ** [[JHtmlAccess::usergroup/11.1|JHtmlAccess::usergroup]] |
| − | * [[JInstallerLanguage::uninstall/11.1|JInstallerLanguage::uninstall]] | + | ** [[JHtmlAccess::usergroups/11.1|JHtmlAccess::usergroups]] |
| − | * [[JHtmlAccess::usergroup/11.1|JHtmlAccess::usergroup]] | + | |
| − | * [[JHtmlAccess::usergroups/11.1|JHtmlAccess::usergroups]] | + | |
===See also=== | ===See also=== | ||
| + | * {{JVer|11.1}} '''JError::raiseNotice source code''' on [[jplatform:error/error.php#cl-211|BitBucket]] | ||
| + | * {{JVer|11.1}} Class [[JError/11.1|JError]] | ||
| + | * {{JVer|11.1}} Subpackage [[Subpackage_Error/11.1|Error]] | ||
| + | * [[JError::raiseNotice|Other versions of JError::raiseNotice]] | ||
| + | {{SeeAlso:JError::raiseNotice}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JError::raiseNotice|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JError::raiseNotice|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 66: | Line 67: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JError]][[Category:JError::raiseNotice]]</noinclude> | <noinclude>[[Category:JError]][[Category:JError::raiseNotice]]</noinclude> | ||
Revision as of 20:52, 27 April 2011
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
JError::raiseNotice
Description
Wrapper method for the method with predefined error level of E_NOTICE and backtrace set to false.
Description:JError::raiseNotice [Edit Descripton]
public static function raiseNotice ( $code $msg $info=null )
| Parameter | Type | Default | Description |
|---|---|---|---|
| $code | string | The application-internal error code for this error | |
| $msg | string | The error message, which may also be shown the user if need be. | |
| $info | mixed | null | Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN). |
- Returns object $error The configured object
- Defined on line 219 of libraries/joomla/error/error.php
- Since
- Referenced by
See also
-
JError::raiseNotice source code on BitBucket
-
Class JError
-
Subpackage Error
- Other versions of JError::raiseNotice
SeeAlso:JError::raiseNotice [Edit See Also]
User contributed notes
<CodeExamplesForm />
