Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Groundwork for custom icons for Workspace to allow identification of …
…projects...
  • Loading branch information
JohnSmith-LT committed Oct 17, 2013
1 parent c4443e3 commit e69b6ae
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file added website_code/images/Icon_Page_site.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
2 changes: 1 addition & 1 deletion website_code/php/display_library.php
Expand Up @@ -226,7 +226,7 @@ function list_files_in_this_folder($folder_id, $sort_type) {

while ($row = mysql_fetch_array($query_response)) {

echo "<div id=\"file_" . $row['template_id'] . "\" class=\"file\" preview_size=\"" . $xerte_toolkits_site->learning_objects->{$row['template_framework'] . "_" . $row['template_name']}->preview_size . "\" editor_size=\"" . $xerte_toolkits_site->learning_objects->{$row['template_framework'] . "_" . $row['template_name']}->editor_size . "\" style=\"padding-left:" . ($level*10) . "px\" onmousedown=\"single_click(this);file_folder_click_pause(event)\" onmouseup=\"file_drag_stop(event,this)\"><img src=\"{$xerte_toolkits_site->site_url}/website_code/images/Icon_Page.gif\" style=\"vertical-align:middle;padding-right:5px\" />" . str_replace("_", " ", $row['project_name']) . "</div>";
echo "<div id=\"file_" . $row['template_id'] . "\" class=\"file\" preview_size=\"" . $xerte_toolkits_site->learning_objects->{$row['template_framework'] . "_" . $row['template_name']}->preview_size . "\" editor_size=\"" . $xerte_toolkits_site->learning_objects->{$row['template_framework'] . "_" . $row['template_name']}->editor_size . "\" style=\"padding-left:" . ($level*10) . "px\" onmousedown=\"single_click(this);file_folder_click_pause(event)\" onmouseup=\"file_drag_stop(event,this)\"><img src=\"{$xerte_toolkits_site->site_url}/website_code/images/Icon_Page_".$row['template_framework'].".gif\" style=\"vertical-align:middle;padding-right:5px\" />" . str_replace("_", " ", $row['project_name']) . "</div>";

}

Expand Down

0 comments on commit e69b6ae

Please sign in to comment.