diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-21 10:18:28 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-21 10:18:28 +0000 |
| commit | fd4a57b993720741d4c048ddde37e9cb42859edd (patch) | |
| tree | 1e629f425a22e16253d30d5af127ae6fd66a5cbf /roundcubemail/program/include/html.php | |
| parent | 02e9db7bf4b6c54928b67c64c7f0f917f796487d (diff) | |
Separate method to create iframe tags (with a list of allowed attributes)
git-svn-id: https://svn.roundcube.net/trunk@1871 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/html.php')
| -rw-r--r-- | roundcubemail/program/include/html.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roundcubemail/program/include/html.php b/roundcubemail/program/include/html.php index 73b0b331e..2d0d90b5f 100644 --- a/roundcubemail/program/include/html.php +++ b/roundcubemail/program/include/html.php @@ -181,6 +181,21 @@ class html } /** + * Derrived method to create <iframe></iframe> + * + * @param mixed Hash array with tag attributes or string with frame source (src) + * @return string HTML code + * @see html::tag() + */ + public static function iframe($attr = null, $cont = null) + { + if (is_string($attr)) { + $attr = array('src' => $attr); + } + return self::tag('iframe', $attr, $cont, array_merge(self::$common_attrib, array('src','name','width','height','border','frameborder'))); + } + + /** * Derrived method for line breaks * * @return string HTML code |
