# texty/1.1/includes/Install.php

Texty – SMS Notification for WordPress, WooCommerce, Dokan and more, version 1.1. 23 lines.

- Page: https://pluginprobe.com/plugins/texty/1.1/code/includes/Install.php
- Raw: https://pluginprobe.com/plugins/texty/1.1/raw/includes/Install.php
- Modified: 2021-01-18T10:49:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/texty/1.1/code/includes/Install.php#L10-L20`.

```php
<?php

namespace Texty;

/**
 * Installer Class
 */
class Install {

    /**
     * Run the isntaller
     */
    public function run() {
        $installed = get_option( 'texty_installed' );

        if ( ! $installed ) {
            update_option( 'texty_installed', time() );
        }

        update_option( 'texty_version', TEXTY_VERSION );
    }
}

```
