function seven_node_add_list

Display the list of available node types for node creation.

File

themes/seven/template.php, line 42

Code

function seven_node_add_list($variables) {
    $content = $variables['content'];
    $output = '';
    if ($content) {
        $output = '<ul class="admin-list">';
        foreach ($content as $item) {
            $output .= '<li class="clearfix">';
            $output .= '<span class="label">' . l($item['title'], $item['href'], $item['localized_options']) . '</span>';
            $output .= '<div class="description">' . filter_xss_admin($item['description']) . '</div>';
            $output .= '</li>';
        }
        $output .= '</ul>';
    }
    else {
        $output = '<p>' . t('You have not created any content types yet. Go to the <a href="@create-content">content type creation page</a> to add a new content type.', array(
            '@create-content' => url('admin/structure/types/add'),
        )) . '</p>';
    }
    return $output;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.