HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/thread-self/root/home/awaldron/_buildinmotion/bim_ci/app/Helpers/content_helper.php
<?php

if (!function_exists('get_intro')) {
    function get_intro() {
        $intros = [
            'From mobile apps, artificial intelligence (AI) and e-commerce to connected hardware and cloud services - partnering with <span>Build in Motion</span> gives you access a trusted team of software experts that manage your software systems and technology infrastructure allowing you to focus on your business.',
            'From mobile apps and artificial intelligence (AI) to e-commerce, IoT, and cloud services &mdash; partnering with <span>Build in Motion</span> connects you with a trusted team of software experts who manage your systems and infrastructure, so you can stay focused on growing your business.',
            'Whether it’s mobile apps, artificial intelligence (AI), e-commerce, or cloud services, <span>Build in Motion</span> is your trusted software partner &mdash; handling your technology and infrastructure so you can focus on what matters most: your business.',
            '<span>Build in Motion</span> brings expertise across mobile apps, artificial intelligence (AI), e-commerce, and cloud services—offering seamless software management and infrastructure support, so you can focus on scaling your business with confidence.',
            'From AI-powered apps and e-commerce platforms to IoT and cloud computing, <span>Build in Motion</span> provides expert software solutions and infrastructure management—empowering your business to thrive in the digital age.',
            'Mobile apps, artificial intelligence (AI), cloud services, and e-commerce &mdash; <span>Build in Motion\'s</span> team of experts handles your software and infrastructure needs, so you can concentrate on running and growing your business.',
        ];
        $randomIndex = array_rand($intros);
        return $intros[$randomIndex];
    }
}


if (!function_exists('shuffle_features')) {
    function shuffle_features() {
        $services = [
            [
                'title' => 'Software Development',
                'desc' => 'Mobile apps, web-based software, artificial intelligence, e-commerce, and smart-home technologies.',
                'icon-2' => 'fas fa-desktop',
                'icon-1' => 'fas fa-mobile-android',
            ],
            [
                'title' => 'Artificial Intelligence',
                'desc' => 'Unlock new possibilities with custom AI-driven insights and automation.',
                'icon-2' => 'fa-duotone fa-regular fa-microchip-ai',
                'icon-1' => '',
            ],
            [
                'title' => 'DevOps & Cloud Services',
                'desc' => 'Transform your technology infrastructure with the latest cloud technologies.',
                'icon-2' => 'fas fa-cloud',
                'icon-1' => 'fas fa-server',
            ],
        ];
        shuffle($services);
        return $services;
    }
}


if (!function_exists('shuffle_services')) {
    function shuffle_services() {
        $top3 = [
            [
                'title' => 'Mobile Applications',
                'desc' => 'Have a game-changing app idea? Build in Motion brings your vision to life with sleek, high-performance mobile apps designed to captivate and engage users.'
            ],
            [
                'title' => 'Artificial Intelligence',
                'desc' => 'Have a game-changing app idea? Build in Motion brings your vision to life with sleek, high-performance mobile apps designed to captivate and engage users.'
            ],
            [
                'title' => 'E-Commerce',
                'desc' => 'Have a game-changing app idea? Build in Motion brings your vision to life with sleek, high-performance mobile apps designed to captivate and engage users.'
            ],
        ];
        $services = [
            [
                'title' => 'Internet-of-Things',
                'desc' => 'Have a device or product you\'re looking to control with a mobile application? Build in Motion has the in-house expertise for all smart-home or internet-of-things applications.'
            ],
            [
                'title' => 'Website Development',
                'desc' => 'Just need a touch-up or redesign of your existing website? Build in Motion\'s expert designers can work with you to create the perfect online identity for your business or organization.'
            ],
            [
                'title' => 'Automated Testing',
                'desc' => 'Automated testing is an excellent way to programmatically ensure that new product versions do not break functionality or introduce new bugs.'
            ],
            [
                'title' => 'DevOps Consulting',
                'desc' => 'With years of experience working with traditional and DevOps-enabled organizations, we understand both cultures and what it takes to transition from one to the other over time.'
            ],
            [
                'title' => 'Staff Augmentation',
                'desc' => 'Need some help with a project you\'re working on? Build in Motion routinely works with companies on a contract basis to provide additional resources to help deliver projects on time.'
            ],
        ];
        shuffle($services);
        return array_merge($top3, $services);
    }
}


if (!function_exists('shuffle_testimonials')) {
    function shuffle_testimonials()
    {
        $testimonials = [
            [
                'name' => 'Mike Moran',
                'company' => 'Scoobi',
                'image' => 'mike.png',
                'quote' => 'Build in Motion has been an integral partner who has helped Scoobi become the success that it is today.',
            ],
            [
                'name' => 'Andrew Haak',
                'company' => 'Insulwise',
                'image' => 'haak.png',
                'quote' => 'I contracted with Build in Motion to create custom software to help my sales team close more sales. They did a tremendous job, were easy to collaborate with, and were patient while we worked to get the details just right.',
            ],
            [
                'name' => 'April Kretchman',
                'company' => 'Accomods',
                'image' => 'april.png',
                'quote' => 'We came to Build in Motion with rough ideas for an app that empowers students with special needs. They took those ideas and created an app that has exceeded our wildest dreams!',
            ],
            [
                'name' => 'Troy Geanopulos',
                'company' => 'The Efficiency Network',
                'image' => 'troy.png',
                'quote' => 'The TEN Project Dashboard, built by Build in Motion, is an invaluable tool our customers use to track the energy savings, operational benefits and financial savings of each TEN project.',
            ],
            [
                'name' => 'Bo Hamlett',
                'company' => 'Steel City Men\'s Clinic',
                'image' => 'bo.png',
                'quote' => 'Build in Motion had great insights into how we could streamline our website, and their understanding of our brand was so spot on that we had them design our print tri-folds and wrap for our van.',
            ],
            [
                'name' => 'Brooks Broadhurst',
                'company' => 'Block 292',
                'image' => 'brooks.png',
                'quote' => 'Build in Motion\'s Swift point-of-sale system is lightning fast and allows my servers to spend less time at the terminal and more time attending to our guests.',
            ],
        ];
        shuffle($testimonials);
        return $testimonials;
    }
}