FeedDiscussionsPlugin::EncodeFeedKey PHP Method

EncodeFeedKey() public static method

public static EncodeFeedKey ( $Key )
    public static function EncodeFeedKey($Key)
    {
        return md5($Key);
    }

Usage Example

Ejemplo n.º 1
0
        ?>
</td>
                        <td><?php 
        echo $LastUpdate;
        ?>
</td>
                        <td><?php 
        echo $Frequency;
        ?>
</td>
                        <td><?php 
        echo $Category;
        ?>
</td>
                        <td class="DeleteFeed">
                            <?php 
        echo anchor(dashboardSymbol('delete'), '/plugin/feeddiscussions/deletefeed/' . FeedDiscussionsPlugin::EncodeFeedKey($FeedURL), 'btn btn-icon', ['aria-label' => t('Delete this Feed')]);
        ?>
                        </td>
                    </tr>
                <?php 
    }
    ?>
                </tbody>
            </table>
        </div>
    <?php 
}
?>
</div>
All Usage Examples Of FeedDiscussionsPlugin::EncodeFeedKey