2006-01-10 17:49:11 -05:00
|
|
|
<?php
|
2006-03-17 19:38:37 -05:00
|
|
|
require_once('../wp-config.php');
|
2006-08-22 13:31:53 -04:00
|
|
|
cache_javascript_headers();
|
2006-01-10 17:49:11 -05:00
|
|
|
?>
|
2006-04-03 20:16:27 -04:00
|
|
|
addLoadEvent(function(){catList=new listMan('categorychecklist');catList.ajaxRespEl='jaxcat';catList.topAdder=1;catList.alt=0;catList.showLink=0;});
|
2006-03-28 20:51:55 -05:00
|
|
|
addLoadEvent(newCatAddIn);
|
2006-01-10 00:16:17 -05:00
|
|
|
function newCatAddIn() {
|
2006-09-02 18:08:10 -04:00
|
|
|
if ( !document.getElementById('jaxcat') ) return false;
|
|
|
|
var ajaxcat = document.createElement('span');
|
|
|
|
ajaxcat.id = 'ajaxcat';
|
|
|
|
|
|
|
|
newcat = document.createElement('input');
|
|
|
|
newcat.type = 'text';
|
|
|
|
newcat.name = 'newcat';
|
|
|
|
newcat.id = 'newcat';
|
|
|
|
newcat.size = '16';
|
|
|
|
newcat.setAttribute('autocomplete', 'off');
|
|
|
|
newcat.onkeypress = function(e) { return killSubmit("catList.ajaxAdder('category','categorydiv');", e); };
|
|
|
|
|
|
|
|
var newcatSub = document.createElement('input');
|
|
|
|
newcatSub.type = 'button';
|
|
|
|
newcatSub.name = 'Button';
|
|
|
|
newcatSub.id = 'catadd';
|
|
|
|
newcatSub.value = 'Add';
|
|
|
|
newcatSub.onclick = function() { catList.ajaxAdder('category', 'categorydiv'); };
|
|
|
|
|
|
|
|
ajaxcat.appendChild(newcat);
|
|
|
|
ajaxcat.appendChild(newcatSub);
|
|
|
|
document.getElementById('jaxcat').appendChild(ajaxcat);
|
|
|
|
|
|
|
|
howto = document.createElement('span');
|
|
|
|
howto.innerHTML = "<?php _e('Separate multiple categories with commas.'); ?>";
|
|
|
|
howto.id = 'howto';
|
|
|
|
ajaxcat.appendChild(howto);
|
2006-01-10 00:16:17 -05:00
|
|
|
}
|