| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/plugins/system/nnframework/helpers/ |
Upload File : |
<?php
/**
* NoNumber! Framework Helper File: Functions
*
* @package NoNumber! Framework
* @version 11.9.1
*
* @author Peter van Westen <peter@nonumber.nl>
* @link http://www.nonumber.nl
* @copyright Copyright © 2011 NoNumber! All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
// No direct access
defined( '_JEXEC' ) or die();
/**
* Functions
*/
class NNFunctions
{
function &getFunctions()
{
static $instance;
if ( !is_object( $instance ) ) {
$instance = new NNFrameworkFunctions;
}
return $instance;
}
}
class NNFrameworkFunctions
{
var $_version = '11.9.1';
function getJSVersion()
{
if ( defined( 'JVERSION' )
&& version_compare( JVERSION, '1.5', '>=' )
&& version_compare( JVERSION, '1.6', '<' )
) {
$app = JFactory::getApplication();
if ( $app->get( 'MooToolsVersion', '1.11' ) != '1.11' ) {
return '_1.2';
} else {
return '';
}
} else {
return '';
}
}
function getMooToolsVersion( $force = 0 )
{
switch( $force ) {
case 1:
$version = '_mt11';
break;
case 2:
$version = '';
break;
default:
$version = '_mt11';
if ( defined( 'JVERSION' )
&& version_compare( JVERSION, '1.6', '<' )
) {
$app = JFactory::getApplication();
if ( $app->get( 'MooToolsVersion', '1.11' ) != '1.11' ) {
$version = '';
}
}
break;
}
return $version;
}
function dateToDateFormat( $dateFormat ) {
$caracs = array(
// Day
'%d' => 'd', '%a' => 'D', '%#d' => 'j', '%A' => 'l', '%u' => 'N', '%w' => 'w', '%j' => 'z',
// Week
'%V' => 'W',
// Month
'%B' => 'F', '%m' => 'm', '%b' => 'M',
// Year
'%G' => 'o', '%Y' => 'Y', '%y' => 'y',
// Time
'%P' => 'a', '%p' => 'A', '%l' => 'g', '%I' => 'h', '%H' => 'H', '%M' => 'i', '%S' => 's',
// Timezone
'%z' => 'O', '%Z' => 'T',
// Full Date / Time
'%s' => 'U'
);
return strtr( (string) $dateFormat, $caracs );
}
function dateToStrftimeFormat( $dateFormat ) {
$caracs = array(
// Day - no strf eq : S
'd' => '%d', 'D' => '%a', 'jS' => '%#d[TH]', 'j' => '%#d', 'l' => '%A', 'N' => '%u', 'w' => '%w', 'z' => '%j',
// Week - no date eq : %U, %W
'W' => '%V',
// Month - no strf eq : n, t
'F' => '%B', 'm' => '%m', 'M' => '%b',
// Year - no strf eq : L; no date eq : %C, %g
'o' => '%G', 'Y' => '%Y', 'y' => '%y',
// Time - no strf eq : B, G, u; no date eq : %r, %R, %T, %X
'a' => '%P', 'A' => '%p', 'g' => '%l', 'h' => '%I', 'H' => '%H', 'i' => '%M', 's' => '%S',
// Timezone - no strf eq : e, I, P, Z
'O' => '%z', 'T' => '%Z',
// Full Date / Time - no strf eq : c, r; no date eq : %c, %D, %F, %x
'U' => '%s'
);
return strtr( (string) $dateFormat, $caracs );
}
function html_entity_decoder( $given_html, $quote_style = ENT_QUOTES, $charset = 'UTF-8' )
{
if ( is_array( $given_html ) ) {
foreach( $given_html as $i => $html ) {
$given_html[$i] = html_entity_decoder( $html );
}
return $given_html;
}
return html_entity_decode( $given_html, $quote_style, $charset );
}
function setSurroundingTags( $pre, $post, $tags = 0 )
{
if ( $tags == 0 ) {
$tags = array( 'div', 'p', 'span', 'pre', 'a',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
'strong', 'b', 'em', 'i', 'u', 'big', 'small', 'font'
);
}
$a = explode( '<', $pre );
$b = explode( '</', $post );
if ( count( $b ) > 1 && count( $a ) > 1 ) {
$a = array_reverse( $a );
$a_pre = array_pop( $a );
$b_pre = array_shift( $b );
$a_tags = $a;
foreach ( $a_tags as $i => $a_tag ) {
$a[$i] = '<'.trim( $a_tag );
$a_tags[$i] = preg_replace( '#^([a-z0-9]+).*$#', '\1', trim( $a_tag ) );
}
$b_tags = $b;
foreach ( $b_tags as $i => $b_tag ) {
$b[$i] = '</'.trim( $b_tag );
$b_tags[$i] = preg_replace( '#^([a-z0-9]+).*$#', '\1', trim( $b_tag ) );
}
foreach ( $b_tags as $i => $b_tag ) {
if ( $b_tag && in_array( $b_tag, $tags ) ) {
foreach ( $a_tags as $j => $a_tag ) {
if ( $b_tag == $a_tag ) {
$a_tags[$i] = '';
$b[$i] = trim( preg_replace( '#^</'.$b_tag.'.*?>#', '', $b[$i] ) );
$a[$j] = trim( preg_replace( '#^<'.$a_tag.'.*?>#', '', $a[$j] ) );
break;
}
}
}
}
foreach ( $a_tags as $i => $tag ) {
if ( $tag && in_array( $tag, $tags ) ) {
array_unshift( $b, trim( $a[$i] ) );
$a[$i] = '';
}
}
$a = array_reverse( $a );
list( $pre, $post ) = array( implode( '', $a ), implode( '', $b ) );
}
return array( trim( $pre ), trim( $post ) );
}
}