вопрос
engine/inc/category.php
Найти (2. | лайн 500-550)
Добавить на верхней
ФАЙЛ Создать
engine/ajax/alt_name.php
Найти (2. | лайн 500-550)
<form method="post" action="">
Добавить на верхней
<script>
function alt_name () {
$("input[name='cat_name']").bind('keyup', function() {
var val = $(this).val();
$.post(
"engine/ajax/alt_name.php", {text: val}, function( data ) {
$("input[name='alt_cat_name']").val( data );
}
);
});
}
</script>
ФАЙЛ Создать
engine/ajax/alt_name.php
<?php
define( 'DATALIFEENGINE', true);
define( 'ROOT_DIR', substr( dirname( __FILE__ ), 0, -12 ) );
define( 'ENGINE_DIR', ROOT_DIR . '/engine' );
include ENGINE_DIR . '/data/config.php';
require_once ENGINE_DIR.'/modules/functions.php';
@include_once ROOT_DIR . '/language/' . $config['langs'] . '/website.lng';
if ( isset( $_POST['text'] ) ) {
echo totranslit( $_POST['text'], true, true );
}
?>