Rumperuu
1284544556
I had to use some RegEx-fu for this. Specifically: ```bash find ./{footnotes.php,includes.php,class/} -type f -name "*.php" -exec sed -i 's/\(p\|l\|a\)_\(str\|bool\|int\|obj\|flo\|arr\)_//g' {} \; find ./{footnotes.php,includes.php,class/} -type f -name "*.php" -exec sed -i 's/MCI_Footnotes/Footnotes/g' {} \; find ./{footnotes.php,includes.php,class/} -type f -name "*.php" -exec sed -i 's/C_\(INT\|STR\|FLO\)_//g' {} \; ``` This should have covered all the bases. In my testing I encountered one error caused by these changes. In the `add_select_box` function in `/class/dashboard/layout.php`, there was a function parameter called `$p_arr_options` and a variable called `$l_str_options`. Removing the Hungarian notation caused an error as these two variables were both now called `$options`. This has been fixed, and I like to think that that will have been the only naming conflict, but I think it is more likely that there maybe others. Further testing is required before I am happy calling this release-ready. Close #34, progress #36
222 lines
5.7 KiB
PHP
222 lines
5.7 KiB
PHP
<?php // phpcs:disable WordPress.Files.FileName.InvalidClassFileName
|
|
/**
|
|
* Includes the Convert Class.
|
|
*
|
|
* @filesource
|
|
* @package footnotes
|
|
* @since 1.5.0
|
|
*
|
|
* @since 2.2.0 add lowercase Roman
|
|
*/
|
|
|
|
/**
|
|
* Converts data types and Footnotes specific values.
|
|
*
|
|
* @since 1.5.0
|
|
*/
|
|
class Footnotes_Convert {
|
|
|
|
/**
|
|
* Converts a integer into the user-defined counter style for the footnotes.
|
|
*
|
|
* @since 1.5.0
|
|
* @param int $index Index to be converted.
|
|
* @param string $convert_style Style of the new/converted Index.
|
|
* @return string Converted Index as string in the defined counter style.
|
|
*
|
|
* Edited:
|
|
* @since 2.2.0 lowercase Roman numerals supported
|
|
*/
|
|
public static function index( $index, $convert_style = 'arabic_plain' ) {
|
|
switch ( $convert_style ) {
|
|
case 'romanic':
|
|
return self::to_romanic( $index, true );
|
|
case 'roman_low':
|
|
return self::to_romanic( $index, false );
|
|
case 'latin_high':
|
|
return self::to_latin( $index, true );
|
|
case 'latin_low':
|
|
return self::to_latin( $index, false );
|
|
case 'arabic_leading':
|
|
return self::to_arabic_leading( $index );
|
|
case 'arabic_plain':
|
|
default:
|
|
return $index;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Converts an integer into latin ascii characters, either lower or upper-case.
|
|
* Function available from A to ZZ ( means 676 footnotes at 1 page possible).
|
|
*
|
|
* @since 1.0-gamma
|
|
* @param int $value Value/Index to be converted.
|
|
* @param bool $upper_case True to convert the value to upper case letter, otherwise to lower case.
|
|
* @return string
|
|
*/
|
|
private static function to_latin( $value, $upper_case ) {
|
|
// Output string.
|
|
$return = '';
|
|
$offset = 0;
|
|
// Check if the value is higher then 26 = Z.
|
|
while ( $value > 26 ) {
|
|
// Increase offset and reduce counter.
|
|
$offset++;
|
|
$value -= 26;
|
|
}
|
|
// If offset set (more then Z), then add a new letter in front.
|
|
if ( $offset > 0 ) {
|
|
$return = chr( $offset + 64 );
|
|
}
|
|
// Add the origin letter.
|
|
$return .= chr( $value + 64 );
|
|
// Return the latin character representing the integer.
|
|
if ( $upper_case ) {
|
|
return strtoupper( $return );
|
|
}
|
|
return strtolower( $return );
|
|
}
|
|
|
|
/**
|
|
* Converts an integer to a leading-0 integer.
|
|
*
|
|
* @since 1.0-gamma
|
|
* @param int $value Value/Index to be converted.
|
|
* @return string Value with a leading zero.
|
|
*/
|
|
private static function to_arabic_leading( $value ) {
|
|
// Add a leading 0 if number lower then 10.
|
|
if ( $value < 10 ) {
|
|
return '0' . $value;
|
|
}
|
|
return $value;
|
|
}
|
|
|
|
/**
|
|
* Converts an integer to a romanic letter.
|
|
*
|
|
* @since 1.0-gamma
|
|
* @param int $value Value/Index to be converted.
|
|
* @param bool $upper_case Whether to uppercase.
|
|
* @return string
|
|
*
|
|
* Edited:
|
|
* @since 2.2.0 optionally lowercase (code from Latin)
|
|
*/
|
|
private static function to_romanic( $value, $upper_case ) {
|
|
// Table containing all necessary romanic letters.
|
|
$romanic_letters = array(
|
|
'M' => 1000,
|
|
'CM' => 900,
|
|
'D' => 500,
|
|
'CD' => 400,
|
|
'C' => 100,
|
|
'XC' => 90,
|
|
'L' => 50,
|
|
'XL' => 40,
|
|
'X' => 10,
|
|
'IX' => 9,
|
|
'V' => 5,
|
|
'IV' => 4,
|
|
'I' => 1,
|
|
);
|
|
// Return value.
|
|
$return = '';
|
|
// Iterate through integer value until it is reduced to 0.
|
|
while ( $value > 0 ) {
|
|
foreach ( $romanic_letters as $romanic => $arabic ) {
|
|
if ( $value >= $arabic ) {
|
|
$value -= $arabic;
|
|
$return .= $romanic;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
// Return romanic letters as string.
|
|
if ( $upper_case ) {
|
|
return strtoupper( $return );
|
|
}
|
|
return strtolower( $return );
|
|
}
|
|
|
|
/**
|
|
* Converts a string depending on its value to a boolean.
|
|
*
|
|
* @since 1.0-beta
|
|
* @param string $value String to be converted to boolean.
|
|
* @return bool Boolean representing the string.
|
|
*/
|
|
public static function to_bool( $value ) {
|
|
// Convert string to lower-case to make it easier.
|
|
$value = strtolower( $value );
|
|
// Check if string seems to contain a "true" value.
|
|
switch ( $value ) {
|
|
case 'checked':
|
|
case 'yes':
|
|
case 'true':
|
|
case 'on':
|
|
case '1':
|
|
return true;
|
|
}
|
|
// Nothing found that says "true", so we return false.
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Get a html Array short code depending on Arrow-Array key index.
|
|
*
|
|
* @since 1.3.2
|
|
* @param int $index Index representing the Arrow. If empty all Arrows are specified.
|
|
* @return array|string Array of all Arrows if Index is empty otherwise html tag of a specific arrow.
|
|
*/
|
|
public static function get_arrow( $index = -1 ) {
|
|
// Define all possible arrows.
|
|
$arrows = array( '↑', '↥', '↟', '↩', '↲', '↵', '⇑', '⇡', '⇧', '↑' );
|
|
// Convert index to an integer.
|
|
if ( ! is_int( $index ) ) {
|
|
$index = intval( $index );
|
|
}
|
|
// Return the whole arrow array.
|
|
if ( $index < 0 || $index > count( $arrows ) ) {
|
|
return $arrows;
|
|
}
|
|
// Return a single arrow.
|
|
return $arrows[ $index ];
|
|
}
|
|
|
|
// phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_var_dump
|
|
// phpcs:disable WordPress.PHP.DevelopmentFunctions.error_log_print_r
|
|
/**
|
|
* Displays a Variable.
|
|
*
|
|
* @since 1.5.0
|
|
* @param mixed $p_mixed_value The variable to display.
|
|
* @return void
|
|
*/
|
|
public static function debug( $p_mixed_value ) {
|
|
if ( empty( $p_mixed_value ) ) {
|
|
var_dump( $p_mixed_value );
|
|
|
|
} elseif ( is_array( $p_mixed_value ) ) {
|
|
printf( '<pre>' );
|
|
print_r( $p_mixed_value );
|
|
printf( '</pre>' );
|
|
|
|
} elseif ( is_object( $p_mixed_value ) ) {
|
|
printf( '<pre>' );
|
|
print_r( $p_mixed_value );
|
|
printf( '</pre>' );
|
|
|
|
} elseif ( is_numeric( $p_mixed_value ) || is_int( $p_mixed_value ) ) {
|
|
var_dump( $p_mixed_value );
|
|
|
|
} elseif ( is_date( $p_mixed_value ) ) {
|
|
var_dump( $p_mixed_value );
|
|
|
|
} else {
|
|
var_dump( $p_mixed_value );
|
|
}
|
|
echo '<br/>';
|
|
}
|
|
// phpcs:disable
|
|
}
|