← Back
Editing: carray.php
<?php /** * Luxeritas WordPress Theme - free/libre wordpress platform * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * @copyright Copyright (C) 2015 Thought is free. * @license http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later * @author LunaNuko * @link https://thk.kanzae.net/ * @translators rakeem( http://rakeem.jp/ ) */ class carray { public function thk_site_name() { return array( '4c7578657269746173205468656d65', '54686f756768742069732066726565', '666f6f746572', '636f70797269676874', '666f6f742d696e' ); } public function thk_hex_array() { return array( '3c6469762069643d5c22636f707972696768745c223e3c702069643d5c2274686b5c2220636c6173733d5c22636f70795c22207374796c653d5c22', '5c223e576f72645072657373204c7578657269746173205468656d652069732070726f7669646564206279202671756f743b3c6120687265663d5c22', '5c22207461726765743d5c225f626c616e6b5c22207374796c653d5c22', '5c223e54686f7567687420697320667265653c2f613e2671756f743b2e3c2f703e3c2f6469763e' ); } public function thk_hex_imp_style() { return $this->hex_2_bin( '626f64792023666f6f7465722c626f64792023666f6f742d696e2c626f64792023636f707972696768742c626f64792023666f6f74657220666f6f7465722023666f6f742d696e2023636f707972696768742c626f64792023666f6f74657220666f6f7465722023666f6f742d696e2c626f6479202' . '3666f6f74657220666f6f7465722c626f64792023666f6f74657220666f6f7465722023636f707972696768742c626f64792023666f6f7465722023666f6f742d696e2023636f707972696768742c626f64792023666f6f7465722023666f6f742d696e2c626f64792023666f6f7465722023636f70' . '7972696768742c626f64792023666f6f742d696e2023636f707972696768742c626f647920666f6f7465722023666f6f742d696e2023636f707972696768742c626f647920666f6f7465722023666f6f742d696e7b706f736974696f6e3a737461746963213b646973706c61793a626c6f636b213b7' . '669736962696c6974793a76697369626c65213b6d617267696e3a6175746f213b6865696768743a6175746f213b6d61782d6865696768743a31303025213b7472616e73666f726d3a6e6f6e65213b7d626f6479202377702d666f6f7465727b706f736974696f6e3a737461746963213b6f76657266' . '6c6f773a68696464656e213b7d2374686b3a6265666f72652c2374686b3a61667465727b636f6e74656e743a6e6f6e65213b7d626f64792023636f707972696768747b746f703a30213b626f74746f6d3a30213b6c6566743a30213b72696768743a2030213b6d61782d77696474683a31303025213' . 'b6d696e2d77696474683a31303025213b6d617267696e3a30213b70616464696e673a323070782030213b746578742d616c69676e3a63656e746572213b6261636b67726f756e642d696d6167653a6e6f6e65213b7472616e73666f726d3a6e6f6e65213b7472616e736974696f6e3a6e6f6e65213b' ); } public function thk_hex_imp_style_close() { return $this->hex_2_bin( '21696d706f7274616e743b' ); } public function thk_id() { return $this->hex_2_bin( '74686b' ); } public function csstext_imp() { return array( '646973706c61793a696e6c696e65213b', '646973706c61793a626c6f636b213b6865696768743a31347078213b6d617267696e3a323070782030213b70616464696e673a30213b', '7669736962696c6974793a76697369626c65213b706f736974696f6e3a737461746963213b746f703a30213b626f74746f6d3a30213b6c6566743a30213b72696768743a30213b6d61782d77696474683a313' . '03025213b6d696e2d77696474683a31303025213b666f6e742d73697a653a31317078213b666f6e742d73697a653a312e3172656d213b6c696e652d6865696768743a31213b746578742d696e64656e743a30' . '213b746578742d616c69676e3a63656e746572213b6261636b67726f756e643a6e6f6e65213b6f7061636974793a31213b7472616e73666f726d3a6e6f6e65213b7472616e736974696f6e3a6e6f6e65213b' ); } public function ins_luxe() { return $this->hex_2_bin( '696e736572745f6c7578652829' ); } public function hex_2_bin( $hex ) { if( function_exists( 'hex2' . 'bin' ) === false ) { $thk_pack = 'pa' . 'ck'; return preg_match( '/^[0-9a-f]+$/i', $hex ) ? $thk_pack( 'H*', (string)$hex ) : $hex; } else { $thk_bin = 'hex2' . 'bin'; return @$thk_bin( $hex ); } } }
Save File
Cancel