API17

Difference between revisions of "JError::raiseNotice"

From Joomla! Documentation

m (JoomlaWikiBot moved page JError::raiseNotice/11.1 to API17:JError::raiseNotice without leaving a redirect: Robot: Moved page)
m (preparing for archive only)
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
Wrapper method for the  method with predefined error level of E_NOTICE and backtrace set to false.  
 
Wrapper method for the  method with predefined error level of E_NOTICE and backtrace set to false.  
  
{{Description:JError::raiseNotice}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JError::raiseNotice|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
<source lang="php">
 
<source lang="php">
 
public static function raiseNotice (
 
public static function raiseNotice (
Line 42: Line 40:
 
* '''Since''' {{JVer|11.1 }}
 
* '''Since''' {{JVer|11.1 }}
 
* '''Referenced by'''
 
* '''Referenced by'''
** [[JHtmlAccess::assetgroups/11.1|JHtmlAccess::assetgroups]]
+
** [[API17:JHtmlAccess::assetgroups|JHtmlAccess::assetgroups]]
** [[JHtmlList::genericordering/11.1|JHtmlList::genericordering]]
+
** [[API17:JHtmlList::genericordering|JHtmlList::genericordering]]
** [[JFormFieldRules::getInput/11.1|JFormFieldRules::getInput]]
+
** [[API17:JFormFieldRules::getInput|JFormFieldRules::getInput]]
** [[JHtmlMenu::linkoptions/11.1|JHtmlMenu::linkoptions]]
+
** [[API17:JHtmlMenu::linkoptions|JHtmlMenu::linkoptions]]
** [[JMail::Send/11.1|JMail::Send]]
+
** [[API17:JMail::Send|JMail::Send]]
** [[JInstallerLanguage::uninstall/11.1|JInstallerLanguage::uninstall]]
+
** [[API17:JInstallerLanguage::uninstall|JInstallerLanguage::uninstall]]
** [[JHtmlAccess::usergroup/11.1|JHtmlAccess::usergroup]]
+
** [[API17:JHtmlAccess::usergroup|JHtmlAccess::usergroup]]
** [[JHtmlAccess::usergroups/11.1|JHtmlAccess::usergroups]]
+
** [[API17:JHtmlAccess::usergroups|JHtmlAccess::usergroups]]
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JError::raiseNotice source code''' on [[jplatform:error/error.php#cl-211|BitBucket]]
 
* {{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}} Class [[API17:JError|JError]]
* {{JVer|11.1}} Subpackage [[Subpackage_Error/11.1|Error]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Error|Error]]
* [[JError::raiseNotice|Other versions of JError::raiseNotice]]
+
* [[API17:JError::raiseNotice|Other versions of JError::raiseNotice]]
{{SeeAlso:JError::raiseNotice}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JError::raiseNotice|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
 
===User contributed notes===
 
===User contributed notes===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JError::raiseNotice
 
category=JError::raiseNotice
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
Line 70: Line 66:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JError]][[Category:JError::raiseNotice]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 21:58, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JError::raiseNotice[edit]

Description[edit]

Wrapper method for the method with predefined error level of E_NOTICE and backtrace set to false.


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).

See also[edit]


User contributed notes[edit]

Code Examples[edit]