View source
<?php
function this_is_not_a_menu_hook() {
$items = array();
$items[] = array();
return $items;
}
function _coder_6x_more_tests() {
if (taxonomy_node_get_terms($nid)) {
}
if (taxonomy_node_get_terms($node->nid)) {
}
if (taxonomy_node_get_terms($node)) {
}
$output = strtr(format_plural($num, 'There is currently 1 %type post on your site.', 'There are currently @count %type posts on your site.'), array(
'%type' => theme('placeholder', $type),
));
$output = notstrtr(format_plural($num, 'There is currently 1 %type post on your site.', 'There are currently @count %type posts on your site.'), array(
'%type' => theme('placeholder', $type),
));
watchdog('user', t('Removed %username user.', array(
'%username' => $user->name,
)));
watchdog('user', 'Removed %username user.', array(
'%username' => $user->name,
));
$complex = unserialize(cache_get('complex_cid'));
cache_set('simple_cid', 'cache', $simple);
$ip = $_SERVER['REMOTE_ADDR'];
if ($file = file_check_upload('picture_upload')) {
$file = file_save_upload('picture_upload', $destination, FILE_EXISTS_REPLACE);
}
if ($file = file_save_upload('picture_upload', $validators)) {
}
$sql = 'UPDATE {file_revisions} SET vid=1';
if (db_query('SELECT * FROM {file_revisions}')) {
}
$form = array(
'#base' => 'my_shared_form_id',
'#pre_render' => '<div>',
);
$form['#base'] = 'http://example.com';
$form['#submit']['my_submit_function'] = array(
$param1,
$param2,
);
$form['#submit']['my_validate_function'] = array();
$form['#multistep'] = TRUE;
form_set_value($element, 'value', $form_status);
form_set_value($element, 'value');
confirm_form($form, t('Do you really want to delete this?'), "node/{$nid}", t("Don't do it unless you're really sure!"), t('Delete it'), t('Go back'), 'delete');
confirm_form($form, t('Do you really want to delete this?'), "node/{$nid}", $options);
confirm_form($form, t('Do you really want to delete this?'), "node/{$nid}", array());
custom_url_rewrite($url);
custom_url_rewrite_inbound($url);
}
function _coder_6x_test_link_alter($node, &$links) {
}
function _coder_6x_test2_link_alter(&$links, $node) {
}
function _coder_6x_test_mail_alter(&$mailkey, &$to, &$subject, &$body, &$from, &$headers) {
}
function _coder_6x_test2_mail_alter(&$message) {
}
function coder_node_get_name() {
node_get_name('name');
}
function myform_validate($form_id, $form) {
}
function myform_submit($form_id, $form) {
$form['#submit']['newsubmit'] = array();
$form['#submit'][] = "newsubmit";
}
function mymodule_info($field = 0) {
}
function mymodule_auth($username, $password, $server) {
}
function mymodule_help($section) {
}
function mymodule_help($section, $arg) {
}