Author Topic: [PLUGIN] HTML-Converter v2  (Read 6472 times)

0 Members and 1 Guest are viewing this topic.

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
[PLUGIN] HTML-Converter v2
« on: September 23, 2008, 11:16:47 PM »
Hallo,
mit diesem Converter ist es möglich HTML und PHP in verschiedenen Sprachen und Codes auszugeben.

  • HTML nach PHP (' single quoted echo)
  • HTML nach PHP (" double quotes echo)
  • HTML nach Javascript
  • PHP nach HTML (PHP ' single quoted echo)
  • PHP nach HTML (" double quoted echo)
  • PHP " (double) echo nach ' (single) echo
  • Encode Text nach HTML ASCII Entities
  • Encode Text nach HTML Entities
  • Encode RAW URL nach Text
  • Strip HTML Tags komplett


Step 1

Lade alles aus dem entpackten Ordner "htmlumwandler" in die entsprechende Ordnerstruktur hoch:
admin/plugins/htmlconverter.php

Öffne lang/deutsch/admin.php
Suche:
//-----------------------------------------------------
//--- Settings ----------------------------------------
//-----------------------------------------------------

Davor einfügen:
//-----------------------------------------------------
//--- HTML-Converter v2 -------------------------------
//-----------------------------------------------------

$lang_htmlc_uber 'HTML-Converter v2';
$lang_htmlc_op1 'Option (1)';
$lang_htmlc_op2 'Option (2)';
$lang_htmlc_tosinglephp 'HTML nach PHP (single quoted echo)';
$lang_htmlc_toechophp 'HTML nach PHP (double quoted echo)';
$lang_htmlc_phptohtml 'PHP nach HTML (single quoted echo)';
$lang_htmlc_phptoechohtml 'PHP nach HTML (double quoted echo)';
$lang_htmlc_phptophp 'PHP nach PHP (double to single quoted echo)';
$lang_htmlc_encodeascii 'Encode Text nach HTML ASCII Entities';
$lang_htmlc_encode 'Encode Text nach HTML Entities';
$lang_htmlc_encodetagscomplete 'Strip HTML Tags komplett';
$lang_htmlc_url 'Encode URL nach Text';
$lang_htmlc_rawurl 'Encode RAW URL nach Text';
$lang_htmlc_htmltojs 'HTML nach JAVASCRIPT';
« Last Edit: October 04, 2009, 11:40:10 AM by Sumale.nin »

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.805
  • I ♥ 4I
    • View Profile
Re: [PLUGIN] HTML-Converter v2
« Reply #1 on: October 04, 2009, 11:39:43 AM »
Hello,
with this converter, it is possible to output HTML and PHP in different languages and codes.

  • HTML to PHP (' single quoted echo)
  • HTML to PHP (" double quotes echo)
  • HTML to Javascript
  • PHP to HTML (PHP ' single quoted echo)
  • PHP nto HTML (" double quoted echo)
  • PHP " (double) echo nach ' (single) echo
  • Encode Text to HTML ASCII Entities
  • Encode Text to HTML Entities
  • Encode RAW URL to Text
  • Strip HTML Tags complete


Step 1

Load everything from the unzipped folder "htmlumwandler" high into the appropriate folder structure:
admin/plugins/htmlconverter.php

Open lang/english/admin.php
Search:
//-----------------------------------------------------
//--- Settings ----------------------------------------
//-----------------------------------------------------

Add before:
//-----------------------------------------------------
//--- HTML-Converter v2 -------------------------------
//-----------------------------------------------------

$lang_htmlc_uber 'HTML-Converter v2';
$lang_htmlc_op1 'Option (1)';
$lang_htmlc_op2 'Option (2)';
$lang_htmlc_tosinglephp 'HTML to PHP (single quoted echo)';
$lang_htmlc_toechophp 'HTML to PHP (double quoted echo)';
$lang_htmlc_phptohtml 'PHP to HTML (single quoted echo)';
$lang_htmlc_phptoechohtml 'PHP to HTML (double quoted echo)';
$lang_htmlc_phptophp 'PHP to PHP (double to single quoted echo)';
$lang_htmlc_encodeascii 'Encode Text to HTML ASCII Entities';
$lang_htmlc_encode 'Encode Text to HTML Entities';
$lang_htmlc_encodetagscomplete 'Strip HTML Tags kcomplete';
$lang_htmlc_url 'Encode URL to Text';
$lang_htmlc_rawurl 'Encode RAW URL to Text';
$lang_htmlc_htmltojs 'HTML to JAVASCRIPT';


Download