From 05850f7f9782729e6510b4a8fb02b5f5efebc89a Mon Sep 17 00:00:00 2001 From: De Cock Xavier Date: Fri, 5 Oct 2007 10:15:46 +0000 Subject: [PATCH] Added Callback capacity in PECL code, reflecting it here. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@243546 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/bbcode/functions/bbcode-create.xml | 10 +++++----- reference/bbcode/reference.xml | 5 ++++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/reference/bbcode/functions/bbcode-create.xml b/reference/bbcode/functions/bbcode-create.xml index 57c5f6d3c2..5f311efee9 100644 --- a/reference/bbcode/functions/bbcode-create.xml +++ b/reference/bbcode/functions/bbcode-create.xml @@ -1,5 +1,5 @@ - + bbcode_create @@ -63,16 +63,16 @@ content_handling optional - - Gives the name of the function used as callback for modification - of the content - currently only supports functions not methods. + Gives the callback used for modification of the content. Object + Oriented Notation supported only since 0.10.1 callback prototype is string name(string $content, string $argument) param_handling optional - - Gives the name of the function used as callback for modification - of the argument - currently only supports functions not methods. + Gives the callback used for modification of the argument. Object + Oriented Notation supported only since 0.10.1 callback prototype is string name(string $content, string $argument) diff --git a/reference/bbcode/reference.xml b/reference/bbcode/reference.xml index 3d55191299..2a5cfa1022 100644 --- a/reference/bbcode/reference.xml +++ b/reference/bbcode/reference.xml @@ -1,5 +1,5 @@ - + BBCode Functions @@ -15,6 +15,9 @@ approach based on regular expressions. Further more, it helps provide valid HTML by reordering open / close tags and by automatically closing unclosed tags. + + Since 0.10.1 It supports argument quoting with single quotes, + double quotes and html escaped double quotes.