-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mostly UI/navigation changes and minor fixes #28
Conversation
@sebgiroux: Feel free to download the screenshots and upload them on your servers, if you want to.
$vw_vars['show_edit_link'] = true; | ||
$vw_vars['list_column_families'] .= getHTML('columnfamily_details.php',$vw_vars); | ||
$vw_vars['show_edit_link'] = true; | ||
$vw_vars['list_column_families'] .= '<tr><td onclick="document.location.href=\'describe_columnfamily.php?keyspace_name=' . $keyspace_name . '&columnfamily_name=' . $vw_vars['columnfamily_name'] . '\'"><a href="describe_columnfamily.php?keyspace_name=' . $keyspace_name . '&columnfamily_name=' . $vw_vars['columnfamily_name'] . '">' . $vw_vars['columnfamily_name'] . '</a></td></tr>'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to create a view file for this and call getHTML() instead :)
that should do it |
$vw_vars['show_edit_link'] = true; | ||
$vw_vars['list_column_families'] .= getHTML('columnfamily_details.php',$vw_vars); | ||
$vw_vars['show_edit_link'] = true; | ||
$vw_vars['list_column_families'] .= ''; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line seems useless ? :P
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh man, totally forgot that line
Awesome, thanks again man! |
Mostly UI/navigation changes and minor fixes
Hope you like it ;)