Guest User

Untitled

a guest
Jun 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public override void FeatureActivated(SPFeatureReceiverProperties properties) {
  2. AddThemeToSpThemes(THEME_ID, THEME_NAME, THEME_DESC, THEME_IMAGE, THEME_IMAGE);
  3. SPWeb site = properties.Feature.Parent as SPWeb;
  4. if (site != null) {
  5. site.AllowUnsafeUpdates = true;
  6. site.SiteLogoUrl = site.Url + "images/thLogo.gif";
  7. site.Update();
  8. }
  9. }
Add Comment
Please, Sign In to add comment