Show
Ignore:
Timestamp:
08/30/11 17:24:52 (21 months ago)
Author:
bayral
Message:

retrieve tags list and image for a tag.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs

    r11935 r12015  
    2626                case "PwgCmdGetSubCategorieforCategory": 
    2727                    objICom = PwgCmdGetSubCategorieforCategory; 
     28                    break; 
     29                case "PwgCmdGetImageforTag": 
     30                    objICom = PwgCmdGetImageforTag; 
    2831                    break; 
    2932                default: 
     
    8689        } 
    8790 
     91        public static AsyncCommand _pwgCmdGetImageforTag; 
     92        public static AsyncCommand PwgCmdGetImageforTag 
     93        { 
     94            get 
     95            { 
     96                if (_pwgCmdGetImageforTag == null) 
     97                { 
     98                    _pwgCmdGetImageforTag = new PwgCmdGetImageforTag(); 
     99                } 
     100                return _pwgCmdGetImageforTag; 
     101            } 
     102        } 
    88103    } 
    89104}